*{
    font-weight: 200;
    letter-spacing: 2px !important;
    box-sizing: border-box;

    --baseColor: #FFCC33;
    --baseColorTwo: #003399;
    --accentColor: #464b4f;
}

html{
    margin: 0px !important;
    padding: 0px !important;
}

body{
    margin: 0px !important;
    padding: 0px !important;
}

footer{
    background-color: var(--accentColor) !important;
    color: white;
    height: 100px !important;
    margin: 0px !important;
    padding: 0px !important;
}

footer p{
    font-size: 24px;
}

p{
    font-size: 16px;
}

button{
    font-size: 24px !important;
    font-weight: 500;
}

input:focus{
    border-bottom-color: var(--baseColorTwo) !important;
}

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0px 5px 6px #F1F1F1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--baseColor);
}

.home{
    height: 25px !important;
    width: 50px;
}

.info {
    margin-top: 50px;
}

@media screen and (max-width: 601px){
    .title h5{
        text-align: left;
    }

    .top{
        height: auto !important;
    }

    .info{
        padding-bottom: 80px !important;
    }
}

.sidenav{
    background-color: var(--accentColor) !important;
}

.sidenav button{
    background-color: transparent;
    color: white;
    border: none;
    margin-top: 10px;
    text-align: center;
    font-weight: 200;
}

.sidenav button:focus{
    background-color: transparent;
}

.sidenav button:hover{
    cursor: pointer;
}

.title a{
    color: white;
    margin-top: 20px !important;
    font-size: 22px;
}

.underline::after{
    content: "";
    height: 2px;
    display: block;
    background-color: var(--baseColor);
    width: 0px;
    transition: width .2s linear
}

.underline:hover::after{
    width: 100%;
}

.info h3{
    margin-bottom: 25px;
}

.info p{
    font-size: 18px;
}

.project img{
    width: 100% !important;
}

.arrow button{
    background-color: transparent;
    border: none;
}

.arrow button:hover{
    cursor: pointer;
}

.arrow button:focus{
    background-color: transparent;
}

.arrow button i{
    color: white;
    font-weight: 200 !important;
}

#btnTitle{
    margin-bottom: 90px;
}

.button button{
    height: 50px;
    background-color: transparent;
    border: solid 2px var(--baseColor);
    color: white;
    margin-bottom: 15px;
}

.button button:hover{
    background-color: var(--baseColor);
    /* color: black; */
    transition-duration: .5s;
    border: solid 2px var(--baseColor);
}

.button button:focus{
    background-color: var(--baseColor);
    color: white;
    border: solid 2px var(--baseColor);
}

.aboutTeacher img{
    width: 100% !important;
    height: 400px !important;
}

.title{
    margin-bottom: 30px !important;
}

.teacherInfo{
    height: 100% !important;
}

.aboutTeacher{
    margin-top: 80px;
}

.top{
    height: 100vh;
    background-color: var(--accentColor);
    /* background-color:  */
    color: white;
    position: relative;
}

.project{
    height: 400px !important;
    margin-bottom: 50px !important;
}

.photoDiv{
    height: 100% !important;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    /* width: 100% !important; */
}

.photoDiv img{
    height: 100% !important;
    width: auto !important;
    /* margin-left: 50px; */
    margin-right: 50px;
}

.buttons{
    position: absolute;
    bottom: 120px;
}

.arrow{
    position: absolute;
    bottom: 0px;
}

.color a{
    color: #63d488 !important;
}

.featured{
    margin-bottom: 20px !important;
}

.aboutTeacher{
    height: 400px !important;
}

.cs1Div{
    display: none;
}

.cs2Div{
    display: none;
}

.cs3Div{
    display: none;
}

.adminDiv{
    display: none;
}

#signature p{
    margin-top: 50vh !important;
    color: white !important;
    font-size: 22px;
}

.aboutTeacher p{
    font-size: 24px;
}

.adminDiv button{
    height: 50px;
    background-color: transparent;
    color: black;
    border: solid 2px var(--baseColorTwo);
    margin-top: 20px;
}

.adminDiv button:hover{
    background-color: var(--baseColorTwo);
    color: white;
    transition-duration: .5s;

}

.adminDiv button:focus{
    background-color: var(--baseColorTwo);
    color: white;
}

.adminDiv input:focus{
    border-bottom-color: var(--baseColorTwo) !important;
}


/* Loader */

#loader{
    display: none;
    offset: hidden;
}

.lds-hourglass {
    /* display: none !important; */
    transform: translateX(50%);
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 6px;
    box-sizing: border-box;
    border: 26px solid #fff;
    border-color: var(--baseColor) transparent var(--baseColorTwo) transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}