* {
    margin: 0px;
    padding: 0px;
    box-sizing: 0px;
}

html {
  scroll-behavior: smooth;
}

.div1 {
    position: relative;
}

.div1img1 {
    width: 100%;
    z-index: -1;
}

@media screen and (max-width: 700px) {
    .div1 {
        width: 100%;
        overflow: hidden;
    }

    .div1img1 {
        width: 150%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

.div2 {
    display: flex;
    align-items: stretch;
    position: absolute;
    top: 0;
    width: 100%;
}

.div2-1-img1 {
    width: 60px;
    padding: 10px 30px;
}

.div2-2 {
    display: flex;
    align-items: center;
    position: relative;

}

.div2-2-img1 {
    width: 20px;
    color: white;
    transition: all 0.5s ease;
}

.div2-2-img1:hover {
    width: 30px;
}

.div2-2 a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0px 20px;
    transition: all 0.5s ease;
    text-shadow: 0 0 3px rgb(0, 0, 0);
}

.div2-2 a:hover {
    font-size: 20px;
}

.div2-3 {
    display: flex;
    align-items: center;
}

.div2-3 a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0px 10px;
    margin-right: 20px;
    padding: 0px 10px;
    transition: all 0.5s ease;
    border-radius: 20px;
    text-shadow: 0 0 3px rgb(0, 0, 0);
}

.div2-3 a:hover {
    border: 0px solid orange;
    background: orange;
    font-size: 20px;
    text-shadow: 0 0 0px rgba(0, 0, 0, 0);
}

.div2-4 {
    display: none;
    align-items: center;
}

.div2-4 a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0px 20px;
    transition: all 0.5s ease;
    text-shadow: 0 0 3px rgb(0, 0, 0);
}

.div2-4 a:hover {
    font-size: 20px;
}

@media screen and (max-width: 900px) {
    .div2-2 {
        display: none;
    }
    .div2-3 {
        display: none;
    }
    .div2-4 {
        display: flex;
    }
    .div2-1-img1 {
        width: 45px;
    }
}

@media screen and (max-width: 500px) {
    .div2-1-img1 {
        width: 30px;
    }
}

.div3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.871);
    padding: 0px 40px;
    transition: all 0.5s ease;
    opacity: 0%;
    z-index: -3;
}

.div3.active {
    right: 0;
    display: flex;
    opacity: 100%;
    z-index: 3;
}

.div3-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div3-1 a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: black;
    padding-top: 20px;
    transition: all 0.3s ease;
}

.div3-1 a:hover {
    font-size: 22px;
}

.div3-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div3-2 a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: black;
    padding: 10px 0px;
    transition: all 0.3s ease;
}

.div3-2 a:hover {
    font-size: 17px;
}

.div3-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div3-3 a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: black;
    margin-top: 10px;
    padding: 5px;
    transition: all 0.3s ease;
    border: 0px solid white;
    border-radius: 30px;
}

.div3-3 a:hover {
    font-size: 17px;
    background: orange;
}

.div4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin: 50px 20px;
    flex-wrap: wrap;
}

.div4-1 {
  animation: floating 5s ease-in-out infinite;
  display: inline-block;
}

@keyframes floating {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(10px, -10px); }
  50%  { transform: translate(15px, 5px); }
  75%  { transform: translate(5px, 10px); }
  100% { transform: translate(0px, 0px); }
}

.div4-1-img1 {
    width: 400px;
    height: auto;
    border: 0px solid orange;
    border-radius: 30px;
    background: orange;
    margin: 20px 20px;
}

.div4-2 {
    display: flex;
    flex-direction: column;
}

.div4-2-a1 {
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
    text-decoration: none;
    color: rgb(5, 5, 39);
    text-align: center;
}

.div4-2-a2 {
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: normal;
    text-decoration: none;
    padding: 10px 0px;
    color: rgb(0, 0, 0);
}

@media screen and (max-width: 1200px) {
    .div4 {
        justify-content: center
    }
    .div4-1-img1 {
        width: 300px;
    }
}

@media screen and (max-width: 900px) {
    .div4-1-img1 {
        width: 200px;
    }
}

@media screen and (max-width: 810px) {
    .div4 {
        justify-content: center
    }
}

@media screen and (max-width: 700px) {
    .div4-1-img1 {
        width: 150px;
    }
    .div4-2-a1 {
        font-size: 30px;
    }
    .div4-2-a2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .div4-1-img1 {
        width: 150px;
    }
    .div4-2-a1 {
        font-size: 25px;
    }
    .div4-2-a2 {
        font-size: 15px;
    }
}

@media screen and (max-width: 433px) {
    .div4-1-img1 {
        width: 130px;
    }
    .div4-2-a1 {
        font-size: 20px;
    }
    .div4-2-a2 {
        font-size: 10px;
    }
}

.div5 {
    text-align: center;
    background-color: rgb(254, 243, 222);
    background-size: cover;
    margin: 20px;
    border-radius: 30px;
    position: relative;
}

.div5-1 {
    display: inline-block;
}

.div5-1-p1 {
    text-decoration: none;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 0px solid;
    background-color: rgb(0, 176, 106);
    border-radius: 40px;
    padding: 10px;
    position: relative;
    top: -30px;

}

.div5-2-p1 {
    text-decoration: none;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
}

.div5-2-p2 {
    text-decoration: none;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
}

.div5-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.div5-3-1 {
    border: 0px solid;
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 30px;
    z-index: 1;
    box-shadow: 0px 0px 10px black;
}

.div5-3-1-p1 {
    text-decoration: none;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: rgb(0, 0, 0);
    padding: 10px 0px;
    border: 0px solid;
    border-radius: 20px;
    background: orange;
}

.div5-3-1-p2 {
    text-decoration: none;
    font-size: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(0, 0, 0);
    padding: 10px 0px;
    padding-bottom: 30px;
}

.span1 { 
    font-size: 20px;
}

.span2 {
    font-size: 15px;
}

.div5-3-1-p3 {
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(0, 0, 0);
    padding: 10px 0px;
    border-bottom: 1px solid black;
}

.div5-3-1-1 {
    margin-top: 100px;
    margin-bottom: 20px;
}

.div5-3-1-1-a1 {
    text-decoration: none;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(0, 0, 0);
    padding: 10px;
    border: 0px solid;
    border-radius: 10px;
    background: orange;
    transition: all 0.3s ease;
}

.div5-3-1-1-a1:hover {
    font-size: 27px;
    border-radius: 20px;
}

.div5-3-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div5-3-3-a1 {
    text-decoration: none;
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    border: 0px solid;
    border-radius: 30px;
    background: black;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in;
}

.div5-3-3-a1:hover {
    background: orange;
}

.div5-3-3-img1 {
    width: 300px;
}

@media screen and (max-width: 600px) {
    .div5-1-p1 {
        font-size: 20px;
        top: -20px;
    }

    .div5-2-p1 {
        font-size: 15px;
    }

    .div5-2-p2 {
        font-size: 30px;
    }

    .div5-3-1-p1 {
        font-size: 25px;
    }

    .div5-3-1-p2 {
        font-size: 40px;
    }

    .div5-3-1-p3 {
        font-size: 10px;
    }

    .div5-3-1-1-a1 {
        font-size: 15px;
    }
}

@media screen and (max-width: 500px) {
    .div5-3-3-a1 {
        font-size: 15px;
    }

    .div5-3-3-img1 {
        width: 200px;
    }

    .div5-3-1-p1 {
        font-size: 20px;
    }
}

.div6 {
    text-align: center;
    background-image: url(Assets/Coding-World-1.png);
    width: 100%;
    height: auto;
}

.div6-p1 {
    font-size: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: white;
    padding-top: 50px;
}

.div6-p2 {
    font-size: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: white;
}

.div6-p3 {
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: white;
}

.div6-a1 {
    text-decoration: none;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: white;
    border: 0px solid;
    border-radius: 20px;
    background: orange;
    padding: 20px;
    transition: all 0.3s ease;
}

.div6-a1:hover {
    padding: 20px 40px;
    background: rgb(128, 41, 162);
    font-size: 22px;
}

@media screen and (max-width: 700px) {
    .div6-p1 {
        font-size: 20px;
    }

    .div6-p2 {
        font-size: 40px;
    }

    .div6-p3 {
        font-size: 15px;
    }
}

.div7 {
    display: flex;
    flex-direction: row;
    background-color: orange;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.div7-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.div7-1 img {
    width: 200px;
    margin: 30px;
}

.div7-1 p {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
}

.span3 {
    font-size: 40px;
}

.div7-2 {
    display: flex;
    flex-direction: column;
    margin: 30px;
}

.div7-2 p {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
}

.span4 {
    font-size: 40px;
}

.span5 {
    color: rgb(255, 255, 255);
    text-shadow: 0px 0px 3px black;
}

@media screen and (max-width: 1035px) {
    .div7-1 {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }   
}

@media screen and (max-width: 450px) {
    .div7-1 p {
        font-size: 10px;
    }

    .span3 {
        font-size: 20px;
    }

    .div7-2 {
        text-align: center;
    }

    .div7-2 p {
        font-size: 10px;
    }

    .span4 {
        font-size: 20px;
    }
}

.div8 {
    text-align: center;
    background: black;
}

.div8 p {
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    padding: 10px;
}







