/*Keira's CSS Starts*/
*{
    margin: 0;
    box-sizing: border-box;
}

#bu-authentication{
    font-size: calc(2px + 1.5vw);
    font-family: "Open Sans", sans-serif;
    display: block;
    text-align: center;
}

#username, #password{
    display: block;
    margin: auto;
}

label{
    padding: 1%;
}

#bu-authentication img{
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

#bu-authentication button{
    font-size: calc(2px + 1.5vw);
    margin-top: 2%;
    margin-right: 5%;
    background-color: deepskyblue;
    color: white;
    padding-left: 2%;
    padding-right: 2%;
}

#bu-authentication input{
    padding: 0.5%
}

#bu-authentication h4{
    margin-top: 1%;
}

#page-wrapper{
    width: 80vw;
    background-color: #edf7ed;
    margin: auto;
    font-size: calc(2px + 1vw);
    font-family: "Roboto Condensed", sans-serif;
    visibility: hidden;
}

header{
    background-color:  #A0C878;
    position: relative;
    padding: 2%;
}

#logo{
    max-width: 90%;
    max-height: 100%;
    position: absolute;
    top: 30%;
    left: 2%;
}

#header-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: left;
}

#logo-title{
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding-left: 13%;
}

header h1{
    text-align: left;
    font-size: calc(2px + 4vw);
}

header p{
    font-size: calc(2px + 1.5vw);
    text-align: center;
    padding-top: 8%;
}

nav{
    background-color: #DDEB9D;
    border-top: 1px solid #718a4e;
    border-bottom: 1px solid #718a4e;
}

nav ul{
    list-style: none;
    display: flex;
    padding: 0;
    align-items: center;
}

nav ul li{
    display: inline-block;
    margin: auto;
    padding: 1%;
    /*border-left: 1px solid #718a4e;*/
}

nav p{
    opacity: 0;
    font-size: 60%;
}

input{
    font-size: calc(2px + 1.25vw);
    background-color: #FFFDF6;
}

#search-wrapper{
    display: flex;
    align-items: center;
    padding: 1.5% 20% 1% 4%;
}

nav input{
    height: 5.5vh;
    border: 2px solid #babfb2;
    font-size: calc(2px + 1vw);
    background-color: rgba(255, 255, 255, 0.7);
}

#button{
    background-color: #A8bd86;
    height: 5.5vh;
    width: 8.5vw;
    border: 2px solid #627346;
    border-radius: 10%;
    background-image: url("src/search-icon.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#home-button, #date-button, #convo-button, #student-button, #drive-button, #friend-button{
    width: 3vw;
    height: 5vh;
    text-align: center;
    background-color: transparent;
    transition: height 0.2s 0s linear;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#home-button{
    margin-left: 20%;
    background-image: url("src/home-icon.png");
}

#date-button{
    background-image: url("src/heart-button.png");
}

#drive-button{
    background-image: url("src/car-icon.png");
}

#friend-button{
    background-image: url("src/friend-icon.png");
}

#convo-button{
    background-image: url("src/convo-icon.png");
}

#student-button{
    background-image: url("src/student-icon.png");
}

#button:hover{
    background-image: url("src/search-icon.png");
    background-color: #68784e;
}

nav input:hover{
    background-color: white;
}

#home-button:hover, #student-button:hover, #convo-button:hover, #drive-button:hover, #friend-button:hover, #date-button:hover{
    height: 6vh;
    width: 4vw;
}

#search-wrapper:hover{
    background-color: transparent;
}

main{
    text-align: center;
    font-size: calc(2px + 1.25vw);
}
main h2{
    margin-top: 2%;
    margin-bottom: 2%;
}

main h3{
    margin-top: 2%;
    margin-bottom: 2%;
    text-align: center;
}

main img{
    margin-bottom: 2%;
    margin-top: 2%;
    max-width: 100%;
    max-height: 100%;
    border: #DDEB9D solid 10px;
}

#text-1, #text-3, #text-4, #text-5, #text-6{
    border: black solid 3px;
    background-color: #ffffff;
    max-width: 50%;
    margin: auto;
}

#text-2{
    border-top: black solid 3px;
    border-left: black solid 3px;
    border-right: black solid 3px;
    background-color: #ffffff;
    max-width: 50%;
    margin: auto;
}

main p{
    padding: 2%;
}

#big{
    font-size: calc(2px + 2vw);
    color: red;
    background-color: #ffffff;
    border-right: black solid 3px;
    border-left: black solid 3px;
    border-bottom: black solid 3px;
    max-width: 50%;
    margin: auto;
}

#intro{
    margin-bottom: 2%;

}

#end{
    margin-top: 2%;
}

footer{
    background-color: #A0C878;
    text-align: center;
    padding: 2%;
}

@media screen and (max-width: 750px){

    #home-button, #date-button, #convo-button, #student-button, #drive-button, #friend-button{
        margin: auto;
        padding: 4%;
    }

    }
    nav input{
        height: 3vw;
    }

    #bu-authentication img{
        max-height: 20vw;
    }

    #button{
        height: 3vw;
    }

    main img{
        max-width: 50%;
    }

/*Keira's CSS Ends*/

