@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-size: 20px;
    font-family: "Afacad Flux";
    background-color: white;
    color: #2c2c2c;
}
h1{
    font-size: 2em;
    font-weight: 500;
    padding-bottom: 30px;
}
h2{
    font-size: 1.5em;
    font-weight: 500;
    padding: 20px;
}
p{
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 30px;
}
img{
    width: 40%;
    height: 40%;
}
button{
    background-color: #2c2c2c;
    border: none;
    color: white;
    font-family: "Open Sans";
    cursor: pointer;
    padding: 7px;
    width: 100px;
}

/* header css */

#headerDiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../images/simpleHeader.jpg');
    background-size: cover;
    background-position-y: 30%;
    color: white;
}
header h1{
    font-size: 1.5em;
    padding: 20px;
    padding-left: 40px;
}
nav ul{
    display: flex;
    font-size: 1em;
    padding: 20px 40px 20px 30px;
    gap: 20px;
}
nav ul li a{
    text-decoration: none;
    color: white;
}

/* content div + main */

#content{
    flex: auto;
}
main{
    padding: 150px 150px 150px 150px;
}

/* contact css */

main{
    display: flex;
    flex-direction: column;
    gap: 1em;
}
main div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3em;
    color: white;
}
main div div{
    background-color: #2c2c2c;
    width: 100%;
    padding: 2em 0 2em 0;
    border-radius: 10px;
    cursor: pointer;
}
main div div:hover{
    transform: scale(1.02);
}

/* Footer css */

footer{
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #2c2c2c;
    color: white;
}

@media all and (max-width: 1000px){
    main, aside{
        padding: 75px 75px 75px 75px;
    }
    nav{
        display: none;
    }
    nav ul{
        display: block;
    }
    nav.open{
        display: flex;
    }
    #menu-button{
		color: white;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 2em;
        padding: 10px 15px 15px 0px;
        text-align: center;
		cursor: pointer;
    }
    main div div{
        background-color: #2c2c2c;
        width: 100%;
        padding: 2em 0 2em 0;
    }
}
@media all and (max-width: 550px){
    main, aside{
        padding: 50px 20px 50px 20px;
    }
}