: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(198, 59%, 74%);
    --accent1: hsl(-21, 87%, 72%);
    --accent2: hsl(173, 70%, 70%);

}

body{
    background: var(--dark1);
    color: var(--light2);
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent2);
    background: var(--dark2);
    padding: 10px;
}

#logo{
    color: var(--light1);
    font-size: 2vh;
    font-weight: bold;
    flex: 1;
}

.sectionWrapper{
    width: 80%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
a{
    color: var(--accent2);
    text-decoration: none;
}
.back{
    color: var(--accent2);
}

section:first-of-type .sectionWrapper{
    flex-direction: column;
    justify-self: center;
    color: var(--light1);
    align-items: start;
    margin: 60px auto;
}
.sectionWrapper h1{
    color: var(--light2);
    text-shadow: 1px 1px 2px var(--dark2);
}

.sectionWrapper ol {
    font-size: 1.6rem;
    color: var(--light2);
    text-shadow: 1px 1px 2px var(--dark2);
    font-weight: 700;
}
.sectionWrapper ol li {
    color: var(--light1);
    font-size: 1rem;
    text-shadow: none;
    font-weight: normal;
}

header #logo span{
    color: var(--light2);
}
h1 span{
    font-weight: 300;
    color: var(--light1);
    font-size: 1.3rem;
}