@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Edu+AU+VIC+WA+NT+Arrows:wght@400..700&family=Fredoka:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: "Afacad Flux";
    background-color: white;
    color: #2c2c2c;
}
h1{
    font-size: 60px;
    padding-bottom: 40px;
    font-weight: 500;
}
p{
    padding-bottom: 40px;
    font-size: 20px;
    line-height: 30px;
}
img{
    width: 60%;
    height: 60%;
}

/* Header css */

header{
    display: block;
    background-image: url('../images/simpleHeader.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}
#headerDiv{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
}
header div#headerDiv p{
    text-align: center;
    padding-bottom: 40px;
    box-sizing: border-box;
    width: 70%;
}
button{
    background-color: #2c2c2c;
    border-radius: 10px;
    border: none;
    color: white;
    font-family: "Open Sans";
    cursor: pointer;
    padding: 7px;
    width: 100px;
}

/* Nav bar css */

nav{
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
nav ul{
    display: flex;
    justify-content: end;
    padding: 20px 30px 20px 30px;
    gap: 20px;
}
nav ul li a{
    text-decoration: none;
    color: white;
}

/* main + aside css */

main, aside{
    padding: 150px 150px 0px 150px;
}

/* Main content css */

#content{
    flex: auto;
}
main{
    padding-top: 150px;
}
main h1{
    padding-bottom: 40px;
}
#projectsContainer{
    display: flex;
    gap: 30px;
}
div.projectsDiv{
    width: 100%;
}
#prevBtnContainer{
    background: url("../images/nursingPic.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 500px;
    display: flex;
    align-items: start;
}
#nxtBtnContainer{
    background: url("../images/makeupWebsite.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 500px;
    display: flex;
    justify-content: end;
    align-items: start;
}
main div p{
    padding: 0;
    padding-top: 30px;
    padding-bottom: 10px;
}
#nxtBtn{
    color: white;
    font-size: 60px;
    font-weight: 900;
    opacity: 70%;
    background-color: transparent;
}
#prevBtn{
    color: white;
    font-size: 60px;
    font-weight: 900;
    opacity: 70%;
    background-color: transparent;
}
#nxtBtn:hover{
    opacity: 100%;
    transform: scale(1.1);
}
#prevBtn:hover{
    opacity: 100%;
    transform: scale(1.1);
}

/* Start of Asides css */
/* Reviews aside css */

/* aside{
    display: flex;
    padding-top: 150px;
}
#asideReviews{
    display: block;
}
#reviews{
    display: flex;
} */

/* 100% screen width photos */

.stretchedPhoto{
   width: 100%;
}

/* Eduaction aside css */

#educationAside{
    display: block;
}
#educationAside h1{
    padding-bottom: 40px;
}
#educationDiv{
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
    height: 400px;
    gap: 30px;
    padding-bottom: 40px;
}
div.educationSymbols{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    font-size: 100px;
    background-color: #2c2c2c;
    color: white;
}
.educationH1{
    font-size: 30px;
    font-weight: 200;
    text-align: center;
}
.educationP{
    text-align: center;
    font-weight: 200;
    padding: 30px;
    padding-bottom: 0px;
}
.educationButton{
    background-color: white;
    color: #2c2c2c;
    width: 120px;
    padding: 10px;
}

/* image aside */
#imageAside{
    padding: 150px 0 0 0;
}

/* About aside css */

#aboutAside{
    display: flex;
    flex-direction: column;
    padding-bottom: 150px;
}
#aboutDiv{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#aboutButtonDiv{
    padding-top: 10px;
    display: flex;
    gap: 10px;
}
button.aboutButton{
    width: 120px;
    padding: 20px;
    font-size: 15px;
}
#aboutP{
    padding-bottom: 40px;
    width: 80%;
    text-align: center;
}

/* Footer css */

footer{
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #2c2c2c;
    color: white;
}

/* menu button css */

#menu-button{
    display: none;
}

/* Media query css */

@media all and (max-width:1350px){
    #prevBtnContainer, #nxtBtnContainer{
        height: 400px;
    }
    #educationDiv{
        flex-direction: column;
        height: 805px;
    }
}
@media all and (max-width: 900px){
    #prevBtnContainer, #nxtBtnContainer{
        height: 275px;

    }
    #prevBtn, #nxtBtn{
        font-size: 30px;
    }
    main, aside{
        padding: 75px 75px 0px 75px;
    }
    #aboutAside{
        padding-bottom: 75px;
    }
    #aboutP{
        width: 90%;
    }
    #imageAside{
        padding: 75px 0 0 0;
    }
    h1{
        font-size: 50px;
    }
    p{
        font-size: 17px;
    }
    header h1{
        font-weight: 650;
        padding-left: 0;
        padding-right: 0;
    }
    header div#headerDiv p{
        padding-left: 0;
        padding-right: 0;
    }
    /* #reviews{
        display: flex;
        flex-direction: column;
    } */
    nav{
        display: none;
        /* height: auto; */
    }
    nav ul{
        display: block;
    }
    nav.open{
        display: flex;
        justify-content: flex-start;
    }
    #menu-button{
        position: absolute;
        top: 0px;
        right: 0px;
        height: 44px;
		width: 44px;
		color: white;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 30px;
		cursor: pointer;
    }
}
@media all and (max-width: 650px){
    #prevBtnContainer, #nxtBtnContainer{
        height: 175px;
    }
    h1{
        font-size: 30px;
    }
    p{
        font-size: 10px;
        line-height: 20px;
    }
    header h1{
        padding-bottom: 20px;
    }
    header div#headerDiv p{
        padding-bottom: 20px;
    }
    button{
        padding: 7px;
        width: 60px;
        font-size: 10px;
    }
    main, aside{
        padding-top: 75px;
    }
    main h1{
        padding-bottom: 15px;
    }
    #projectsContainer{
        display: flex;
        gap: 20px;
        
    }
    main div p{
        padding: 0;
        padding-top: 15px;
        padding-bottom: 5px;
    }
    #educationAside h1{
        padding-bottom: 15px;
    }
    #educationDiv{
        display: flex;
        justify-content: center;
        justify-content: space-evenly;
        align-items: center;
        height: 600px;
        padding-bottom: 20px;
    }
    div.educationSymbols{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 300px;
        font-size: 100px;
        background-color: #2c2c2c;
        color: white;
    }
    h1.educationH1{
        font-size: 20px;
        font-weight: 200;
        text-align: center;
    }
    .educationP{
        text-align: center;
        font-weight: 200;
        padding: 15px;
    }
    .educationButton{
        background-color: white;
        color: #2c2c2c;
        width: 100px;
        font-size: 10px;
        padding: 3px;
    }
    #aboutDiv h1{
        padding-bottom: 15px;
    }
    button.aboutButton{
        width: 60px;
        padding: 7px;
        font-size: 7px;
    }
    #aboutButtonDiv{
        padding-top: 0;
        display: flex;
        gap: 10px;
    }
    #aboutP{
        padding-bottom: 15px;
        width: 100%;
        text-align: center;
    }
}
@media all and (max-width: 550px){
    main, aside{
        padding: 50px 20px 0 20px;
    }
}
@media all and (max-width: 425px){
    #prevBtnContainer, #nxtBtnContainer{
        height: 125px;
    }
    h1.educationH1{
        font-size: 17px;
    }
    button{
        padding: 7px;
        width: 40px;
        font-size: 7px;
    }
    button.aboutButton{
        width: 40px;
        padding: 7px;
        font-size: 7px;
    }
}
