* { font-family: 'Inter var';}
a {
    color: orange;
}

body {
    margin: 0;
    background-color: #f1f5f9;
}

header {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-bottom: 10px solid orange;
}

header div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.mw-800 {
    max-width: 800px;
}

section {
    padding: 40px;
}

p {
    text-align: justify;
}

footer {
    padding: 40px;
    display: none;
    /* display: flex; */
    color: white;
    flex-direction: row;
    justify-content: space-between;
    background-color: #B400FF;
    /* font-size: 12px; */
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 10px;
}

footer ul li h3 {
    font-size: 18px;
    font-weight: bold;
}

footer ul li a {
    color: black;
    text-decoration: none;
}

footer ul li a:hover {
    color: black;
    text-decoration: underline;
}