body {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
}

main {
    padding-top: 10px;
}

main hr {
    border-top: 4px solid #dd91ff;
}

h2 {
    font-family: 'Young Serif', serif;
}

header {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0px 5px 20px;
    border-bottom: solid 3px black;
}

.logo img {
    max-width: 80%;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 400px;
    align-items: center;
    gap: 25px;
    margin-right: 25px;
}

nav a {
    font-family: 'Young Serif', serif;
    font-size: 1.5em;
    text-decoration: none;
    color: black;
    position: relative;
}

nav a::after {
    content: '';
    height: 4px;
    width: 100%;
    background-color: #dd91ff;
    border-radius: 100px;
    position: absolute;
    left: 0;
    bottom: -4px;
    opacity: 0;
    transition: 0.1s;
}

nav a:hover::after,
nav a:focus::after {
    opacity: 1;
}

footer {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-family: 'Onest', sans-serif;
    font-size: 1.5em;
    background-color: #707070;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 3px solid black;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: underline;
}