/* Dat's code starts here*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#container{
    width: 80vw;
    margin: 0 auto;
    border: 2px solid black;
}

#change{
    width: 5%;
    font: bold calc(2px + 1vw) "Roboto", sans-serif;
    position: fixed;
    left: 92.5%;
    top: 15%;
    background-color: #A0C878;
}
/*I used fixed positioning for the step-changing button so user can access it even when scrolling down to read the step*/
header{
    background-color:#A0C878;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 5% 0;
    font: bold calc(2px + 1.5vw) "Roboto", sans-serif;
}
main{
    height: 150vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
header p{
    font: normal calc(2px + 1vw) "Roboto", sans-serif;
}
#logo{
    position: absolute;
    width: 15%;
    height: 30%;
    left: 11%;
    top: 8%;
    border: none;
}
/*I used absolute positioning for the logo to make it overflow into the nav since I think it would look cool*/
#nav-main{
    width: 100%;
    background-color: #F5FFE5;
}
#searches{
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-left: 8%;
}
#search{
    background-color: #A0C878;
    font: normal calc(2px + 1vw) "Roboto", sans-serif;
}
#search_button{
    width: 85%;
    border: 2px solid black;
    background-color: darkgreen;
}
/*I made these for a decorational search bar*/
nav{
    background-color: #DDEB9D;
    width: 100%;
    font: bold calc(2px + 1vw) "Roboto", sans-serif;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}
nav ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0 20%;
    width: 70%;
}
nav img{
    width: 100%;
    height: 100%;
    border: none;
}
nav li{
    padding: 0 2%;
    border-left: 2px solid black;
}
nav a{
    text-decoration: none;
    color: darkgreen;
}

#step-1, #step-2, #step-3, #step-4, #step-5{
    text-align: center;
    font: normal calc(2px + 1vw) "Roboto", sans-serif;
    margin: 0 auto;
    width: 90%;
    line-height: 200%;
}
#step-4{
    padding: 3%;
}
#step-1 p, #step-1 h3{
    padding-top: 5%;
    padding-right: 5%;
}
#step-1 h5{
    padding-bottom: 5%;
}
#step-1-content{
    display: flex;
    flex-direction: row;
}
#step-1-content:hover , #step-2-content:hover , #step-3-content:hover , #step-4-content-1:hover, #step-4-content-2:hover{
    font: normal calc(2px + 1.5vw) "Roboto", sans-serif;
    line-height: 150%;
}
/*I added this hover function to magnify the text for people with poor eye-sight*/

#step-1-content p, #step-2-content p, #step-3-content p, #step-4-content p{
    padding-top: 5%;
}

img{
    width: 50%;
    height: 30%;
    border-radius: 10%;
    border: 2px solid black;
}
.step-4-img{
    width: 30vw;
    height: 40vh;
    margin: auto;
}
#step-4-1{
    display: flex;
    flex-direction: row;
    margin-top: 2%;
}
#step-4-2{
    display: flex;
    flex-direction: row;
    margin-top: 8%;
}
#step-4-content-1, #step-4-content-2{
    width: 50%;
    display: flex;
    flex-direction: column;
}
#step-2 h3,#step-3 h3, #step-4 h3{
    padding: 5% 0;
}
#step-5 h2, #step-5 h3{
    padding-top: 5%;
}
#step-5 p,#step-5 h2, #step-5 h3{
    color: white;
}
footer {
    background-color: #DDEB9D;
    font: normal calc(2px + 1vw) "Roboto", sans-serif;
    text-align: center;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items:center;
    border-top: 2px solid black;
}


#time-date{
    width: 25%;
    position: absolute;
    left: 70%;
    top: 5%;
    font: bold calc(2px + 1.5vw) Overtime LCD, serif;
}

@media screen and (max-width: 750px) {
    #container{
        width: 80vw;
    }
    main{
        width: 80vw;
    }
    #logo{
        width: 15%;
        height: 10%;
        top: 3.5%;
    }
    #step-4 img{
        height: 20vh;
    }
    #search{
        width: 100%;
    }
    #time-date{
        top: 2%;
    }
}
@media screen and (min-width: 1800px) {
    #car{
        max-width: 40%;
    }
    main{
        height: 180vh;
    }
}
/*Since I specifically want to increase main height for view screen bigger than laptop screen, I chose to use min-width
to fix the issue that we run to in the presentation. and to accommodate all big screens.
 */

/* Dat's code ends here*/
