:root{
    /* --dark1: #482917;
    --dark2: rgb(31, 102, 89);
    --light1: rgb(237, 217, 152);
    --light2: #8bcafa;
    --accent1: #af8;
    --accent2: #fa8; */
    --dark1: hsl(-179, 99%, 24%);
    --dark2: 	hsl(-32, 41%, 20%);
    --light1: hsl(43, 78%, 83%);
    --light2: hsl(-159, 55%, 66%);
    --accent1: hsl(-21, 87%, 72%);
    --accent2: hsl(173, 70%, 70%);

}

body{
    background: var(--dark2);
    color: var(--light2);
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light2);
}
#logo{
    font-size: 3vh;
    padding: 10px;
    color: var(--light1);
    font-weight: bold;
}

#pageWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

main{
    min-width: 400px;
    width: 80vw;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.area{
    border-radius: 8px;
    box-shadow: 0 2px 6px var(--dark1);
}
.areaTitle{
    background: var(--dark1);
    color: var(--light2);
    font-size: 1.5vw;
    padding: 10px;
}
.areaLinks{
    display: flex;
    gap: 10px;
    padding: 20px;
}
.areaLinks a{
    color: var(--light2);
    text-decoration: none;
}
.areaLink{
    color: var(--light2);
    text-decoration: none;
    padding: 10px;
    border: 1px solid var(--light2);
    font-weight: bold;
    border-radius: 2px;
    background: var(--dark1);
}
.areaLink:hover{
    background: var(--dark2);
    border: 1px solid var(--accent2);
    color: var(--accent2);
}



section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
section:first-of-type{
    background: var(--dark1);
    color: var(--light2);
}
section:first-of-type h1{
    color: var(--light1);
    margin: 0;
    text-shadow: 2px 2px 4px var(--dark2);
}
section:nth-of-type(2){
    background: var(--light1);
    color: var(--dark1);
}
section:nth-of-type(2) h1{
    color: var(--dark2);
    margin: 0;
    text-shadow: 1px 1px 2px var(--light2);
}
section:nth-of-type(3){
    background: var(--light2);
    color: var(--dark2);
}
section:nth-of-type(3) h1{
    color: var(--dark1);
    margin: 0;
    text-shadow: 1px 1px 2px var(--light1);
}
.sectionWrapper{
    width: 80%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.art{
    width: 25%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;;
}
.art img{
    width: 150%;
}
.sectionText{
    width: 75%;
    flex: 3;
    z-index: 10;
}
#art3 img{
    /*height: 120%;*/
}

a{
    text-decoration: none;
}
.sectionText a{
    display: flex;
    width: 300px;
    justify-self: center;
    margin: 50px;
}
.bigButton{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent1);
    color: var(--dark2);
    font-size: 1.5rem;
    padding: 10px;
    width: 100%;
    justify-self: center;
    box-shadow: 10px 10px 20px var(--dark2);
}
.buttonIcon{
    width: 20px;
}

section:nth-of-type(odd) .sectionWrapper{
    flex-direction: row-reverse;
}
footer{
    padding-top: 50px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
footer .sectionWrapper, header .sectionWrapper{
    display: flex;
    justify-content: start;
    align-items: center;
}
footer .sectionWrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-around;
}

.linkList{
    display: flex;
    flex-direction: column;
}
.links{
    display: flex;
    flex-direction: column;
}
.links a{
    text-decoration: none;
    color: var(--accent2);
}
.linkList .listTitle{
    font-weight: bold;
    color: var(--light2);
}
@media (orientation: portrait) {
    .art img{
        width: 250%;
    }

    footer .sectionWrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}