


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Architects Daughter', cursive;
    transition: .5s;
}
:root{
    --primary-color: #fff;
    --second-color: #000;
    --third-color: #393939;
}
.dark-mode{
    --primary-color: #000;
    --second-color: #fff;
    --third-color: #fff;
}
body{
    background-color: var(--primary-color);
}
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.navbar{
    background-color: var(--primary-color);
}
#icon, #icon1{
    width: 20px;
    cursor: pointer;
}
footer{
    background-color: #000;
    padding: 40px;
}
footer h2{
    font-size: 25px;
    font-weight: 300;
    color: white;
    font-family: 'Architects Daughter', cursive;
    text-align: center;
    padding-bottom: 20px;
}
footer .d-flex{
    width: 400px;
    height: 50px;
    justify-content: space-evenly;
    margin: auto;
}
footer img{
    width: 35px;
}
footer iframe{
    padding-top: 20px;
    margin: auto;
    display: flex;
}

footer p{
    font-size: 12px;
    color: #777777;
    text-align: center;
    padding-top: 20px;
}
#rectangle2{
    width: 100%; 
    height: 400px; 
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
#rectangle2 p{
    width: 600px;
    text-align: center;
    font-size: 40px; 
    color: #fff;
}
#rectangle3{
    width: 100%;
    height: 161px;
    background-color: #DFD6CD; 
    margin-top: 30px;
    position: relative;
}

#sec2 .container{
    justify-content: space-between;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);

}
#rectangle4 img{
width: 150px;
height: 150px;
border-radius: 50%;
border: 1px solid black;
display: block;
margin-left: auto;
margin-right: auto;
}
#rectangle4 p{
    font-size: 20px; 
    color: black;
    text-align: center;
}

#box1, #box2, #box3{
    padding: 50px 0;
}
#textbox1{
    margin: auto 0;
}
#textbox1 a{
    color: var(--primary-color);
    width: 150px;
    height: 40px;
    border: 10px solid var(--second-color);
    background-color: var(--second-color);
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    
}
#textbox1 p, #textbox2 p, #textbox3 p{
    color: var(--second-color)
}
#box4{
    padding: 30px 0;
    width: 100%; 
    background-color: #D9D9D9;
    margin-top: 50px;
}
#box4 p{
    line-height:1px;
    padding: 50px 0;
    font-size: 25px;
    text-align: center;

}
div.stars {
    display:inline-block;
    position:relative; /*Add this*/
    left:50%; /*Add this*/
    transform:translate(-50%,0); /*Add this*/
}
      
input.star { display: none; }
      
label.star {
    float: right;
    padding: 10px;
    font-size: 36px;
    color: #000;
    transition: all .2s;
    margin-top: -40px;
    cursor: pointer;
}
      
input.star:checked ~ label.star:before {
    content: '\f005';
    color: #FD4;
    transition: all .25s;
}
      
input.star-5:checked ~ label.star:before {
    color: #FE7;
    text-shadow: 0 0 20px #952;
}
      
input.star-1:checked ~ label.star:before { color: #F62; }

label.star:hover { transform: rotate(-15deg) scale(1.3); }

label.star:before {
    content: '\f006';
    font-family: FontAwesome;
}
            

@media only screen and (max-width: 992px){
    *{
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    footer h2{
        font-size: 25px;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    p{
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    #rectangle2 p{
        font-size: 25px;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    #rectangle4 img{
        width: 100px;
        height: 100px;
    }
    #rectangle4 p{
        font-size: 16px;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    #box1, #box3{
        flex-direction: column-reverse;
    }
    #box1 .col-sm-6, #box2 .col-sm-6, #box3 .col-sm-6{
        width: 100%;
        padding: 0 20px;
    }
    #box2{
        flex-direction: column;
    }
}

@media only screen and (max-width: 800px){
    footer .d-flex{
        width: 100%;
    }
    footer iframe{
        width: 100%;
        height: 250px;
    }
    footer{
        padding: 80px 10px;
    }
    #rectangle2 p{
        width: 80%;
    }
    #sec1 h2, footer h2{
        font-size: 20px;
    }
}

@media only screen and (max-width: 500px){
    #sec2 .container{
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        top: 10%;
    }
    #rectangle3{
        height: 600px;
    }
}

@media only screen and (max-width: 400px){
    footer img{
        width: 30px;
    }
}