/* Google Fonts link for Futura */
@import url('https://fonts.googleapis.com/css2?family=Futura:wght@400;700&display=swap');

body {
    font-family: 'Futura', sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 20em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 3em;
    margin-top: 1em;
    letter-spacing: 0.1em;
    text-align: center;
}

h2 {
    font-size: 1.5em;
    text-transform: uppercase;
    margin-top: 2em;
    text-align: left;
    font-weight: bold;
}

p, ul, li {
    font-size: 1.2em;
    max-width: 600px;
    text-align: left;
    line-height: 1.6;
}

a {
    color: #4A3AFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section {
    margin-top: 3em;
    text-align: left;
}