body,html{
    width: 100%;
    padding: 0;
    margin: 0;
}
*{
    color: rgb(32, 32, 32);
    text-decoration: none;
    font-family: "Instrument Serif", serif;
}
.toolBar{
    width: calc(95vw - 20px);
    margin-left: calc(2.5vw + 10px);
    height: 40px;
    border-radius: 10px;
    background-color: #FFFB8C;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.link{
    transition: all ease 0.3s;
}
.link:hover{
    color: rgb(88, 88, 88);
}
.headimg{
    width: 95vw;
    position: relative;
}
.heroImg{
    width: 95vw;
    margin-left: 2.5vw;
    border-radius: 20px;
    margin-top: 10px;
    padding: 10px;
    position: relative;
}
.header{
    position: absolute;
    z-index: 99;
    left: 50px;
    font-size: 150px;
    color: aliceblue;
    line-height: 45px;
}
.circle{
    width: 25vw;
    height: 25vw;
    background-color: #FFFB8C;
    border-radius: 25vw;
    margin-left: 37.5vw;
    position: relative;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circleCont{
    position: relative;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50vw;
    margin-left: 25vw;
}
.positioner{
    position: absolute;
    z-index: 100;
    top: 16vh;
    left: -25vw;
    width: 100vw;
    height: 40vw;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    font-size: 80px;
    opacity: 0;
    top:-6vh; 
    height:25vw;
}
.missionStatement{
    width: 80vw;
    margin-left: 10vw;
    font-size: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contImg{
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.circleImg{
    position: relative;
    margin-left: 0;
    z-index: 666;
    width: 80vw;
    height: 20vw;
}
.positionerimg{
    z-index: 1000;
    line-height: 0;
    opacity: 0;
    font-size: 90px;
}
.imgholder{
    margin-top: 100px;
    width: calc(100vw - 40px);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 20px;
}
.gridimg{
    width: 100%;
    border-radius: 20px;

}
.headimg2{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    background-image: url(daisies2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 2.5vw;
    height: 95vh;
    border-radius: 20px;
    margin-top: 20px;
}
.btn{
    width: 20vw;
    margin-left: 40vw;
    height: 80px;
    background-color: #FFFB8C;
    border-radius: 10px;
    display: flex;
    margin-top: 10px;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
}
.btn:hover{
    cursor: pointer;
    background-color: #fcfbd9;
}
@keyframes slideleft {
    0%{
        
        transform: translateX(-100px);
    }
    100%{
        
        transform: translateX(0px);
    }
}
.slideLeftClass{
    animation: slideleft 0.5s ease-out forwards;
}
@keyframes slideright {
    0%{
        opacity: 0;
        transform: translateX(50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
.slideRightClass{
    animation: slideright 0.5s ease-out forwards;
}
@keyframes slideUp {
    0%{
        opacity: 0;

        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.slideUpClass{
    animation: slideUp 0.5s ease-out forwards;
}
@keyframes opacityani {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.slideopacityaniClass{
    animation: opacityani 1s ease-out forwards;
}

@media (max-width:900px) {
    .header{
        line-height: 120px;
    }
    .positionerimg{
        font-size: 70px;
    }
}
@media (max-width:700px) {
    .header{
        line-height: 100px;
        font-size: 120px;
    }
    .positionerimg{
        font-size: 40px;
    }
    .contImg{
        width: 95vw;
    }
}
@media (max-width:530px) {
    .header{
        line-height: 80px;
        font-size: 100px;
    }
    .positionerimg{
        font-size: 40px;
    }
    .contImg{
        width: 95vw;
    }
    .btn{
        width: 40vw;
        margin-left: 30vw;
    }
    .link{
        font-size: 30px;
    }
}
@media (max-width:450px) {
    .header{
        line-height: 70px;
        font-size: 100px;
    }
    .toolBar{
        margin-left: 1.75vw;
    }
    .heroImg{
        margin-left: 0.5vw;
    }
    .positionerimg{
        font-size: 40px;
    }
    .contImg{
        width: 95vw;
    }
    .circleImg{
        width: 90vw;
    }
    .positioner{
        font-size: 60px;
        top:-4vh; 
        height:25vw;

    }
}