::-webkit-scrollbar {
    display: none;
}

body {
    margin-top: 2rem;
    background-color: #0a0c10;
    color: #72b1f4;
    font-family: sans-serif;
}

header {
    text-align: center;
}

header h1 {
    font-size: 4rem;
    margin-top: 2rem;
}

header nav ul {
    display: flex;
    justify-content: center;
    padding: 0;
}

header nav ul li {
    list-style: none;
    margin: 0 1rem;
}

header nav ul li a {
    text-decoration: none;
    font-size: 2rem;
    color: #72b1f4;
    display: inline-block;
    line-height: 2.5rem;
    transition: transform 0.2s ease-out;
}

header nav ul li a:hover {
    transform: scale(1.125);
    transition: transform 0.125s ease-in;
}





footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    margin-top: 5rem;
}

footer ul {
    display: inline-flex;
    justify-content: center;
}

footer ul li {
    list-style: none;
    margin: 0 1rem;
    font-size: 1.25rem;
}

footer ul li a {
    text-decoration: none;
    color: #72b1f4;
}

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