*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
/*THIS IS THE DESIGN FOR THE MAIN PAGE*/
.main{
    width: 100%;
    height: 110vh;
    position: relative;
}
/*NAVIGATION AND LOGO DESIGN*/
nav{
    width: 80%;
    position: sticky;
    margin: 20px auto;
    z-index: 1;
    display: flex;
    align-items: center;
}
.logo{
    flex-basis: 20%;
}
.logo img{
    width: 190px;
}
.logo:hover{
    opacity: 0.7;;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}
.nav-links ul li a{
    color: #030000;
    text-decoration: none;
}
.nav-links ul li a:hover{
    color: #e24519;
    text-decoration: none;
}
/*INFORMATION SUBSECTION*/
.information{
    width: 1000px;
    height: 1080px;
    position: absolute;
    top: 48.5%;
    left: -10%;
    transform: translateY(-50%);
}
#circle{
    width: 1200px;
    height: 1200px;
    position:relative;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: #ccc;
}
/*SURVEY SUBSECTION*/
.box img{
    width: 298;
    height: 264;
}
.box{
    position:absolute;
    display:flex;
    height: 17rem;
    width: 45rem;
    color: black;
}
.box div{
    margin-left: 30px;
}
.box div p{
    margin-top: 8px;
}
/*SURVEY 1 DESIGN*/
@keyframes fadeIn {
    0% {
      opacity: 0;
    }
}
.survey1{
    top: 180px;
    left: 350px;
    text-decoration: none;
    animation: fadeIn ease-in .5s backwards;
}
.survey1:hover{
    transition: transform 150ms;
    transform: scale(1.03);
    box-shadow: 0 0.4rem 1.4rem 0 rgb(255, 255, 255);
}
/*SURVEY 2 DESIGN*/
.survey2{
    top: 480px;
    left: 350px;
    text-decoration: none;
    animation: fadeIn ease-in .45s backwards;
}
.survey2:hover{
    transition: transform 150ms;
    transform: scale(1.03);
    box-shadow: 0 0.4rem 1.4rem 0 rgb(255, 255, 255);
}
/*SURVEY 3 DESIGN*/
.survey3{
    top: 780px;
    left: 350px;
    text-decoration: none;
    animation: fadeIn ease-in .75s backwards;
}
.survey3:hover{
    transition: transform 150ms;
    transform: scale(1.03);
    box-shadow: 0 0.4rem 1.4rem 0 rgb(255, 255, 255);
}
/*ABOUT SITE SECTION*/
.siteinfo{
    display: flex;
}
#rect{
    width: 2120px;
    height: 100px;
    position:flex;
    background: #f2b0b0;
    text-align: center;
    font-size: xx-large;
}