:root {
    --yellow: #FFC300;
    --light-yellow: #FFEC80;
    --orange: #E24F23;
    --cream: #FFF9F5;
    --blue: #2867B2;
    --light-blue: #5bb5e9;
    --green: #27A72C;
    --light-green:#61CD66;
    --dark-grey: #484646;
    --light-purple: #BA82E4;
    --purple: #93308D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.code {
    font-family: "Google Sans Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "MONO" 1;
}

body {
    min-height: 100vh;
    font-family: "Mona Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: var(--dark-grey);
}

#layout {
    min-height: 100vh;
}

.pitch {
    display: flex;
    flex-direction: row;
}

.pitch>div:first-child {
    border-top: 1px;
    border-right: 0px;
    border-bottom: 1px;
    border-left: 2px;
    border-style: solid;
    flex: 0 0 16px;
    width: 16px;
    border-radius: 10px;
    margin-right: 1em;
}

.pitch>div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blue>div:first-child {
    border-color: var(--dark-grey);
}

.yellow>div:first-child {
    border-color: var(--dark-grey);
}

.purple>div:first-child {
    border-color: var(--dark-grey);
}

ul li {
    list-style-position: inside;
}

.text-button a {
    text-decoration: none;
}

#contact a {
    background-image: image-set(url("../images/linkedin-blue.png") 1x,
            url("../images/linkedin-blue@2x.png") 2x);
    background-repeat: no-repeat;
    background-position: center left;
    font-weight: 400;
    margin-top: 2em;
    padding: 18px 0 18px 51px;
    font-size: 1.3em;
}

.text-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}


.text-button a,
.text-button a:visited {
    color: var(--blue);
}

.text-button a:hover {
    color: var(--orange);
}

.arrow-button {
    width: 342px;
    height: 90px;
    background-image: url(../images/button-arrow.png);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 1em;
    padding: 10px 60px 20px 30px;
}

.arrow-button:hover {
    background-image: url(../images/arrow-button-hover.png);
}

.arrow-button:hover a {
    color: var(--light-green);
}

.arrow-button a {
    color: var(--cream);
    text-decoration: none;
    border: none;
}

footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-size: 0.8em;
    color: var(--cream);
    height: 33px;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}