: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%);
    --gray1: hsl(0,0%,10%);
    --gray2: hsl(0,0%,90%);

}

body{
    background: var(--dark1);
    color: var(--light1);
    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;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
.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
}
.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;
}
.sectionText{
    flex: 3;
    z-index: 10;
}
.sectionWrapper .sectionText a{
    display: block;
    width: max-content;
    background: blue;
    justify-self: center;
}
.sectionText p {
    width: 80%;
}
.cta{
    background: var(--accent1);
    width: 200px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    box-shadow: 0 0 10px var(--dark2);
    margin-top: 20px;
    background: var(--gray2);
}
.figure{
    display: flex;
    justify-content: center;
}