html, body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
}

#logo {
    height: 60vh;
}

h2 {
    color: white;
    margin: 5px 0;
}

p {
    margin: 0 0 15px;
    color: white;
}

a {
    color: #f8b800;
}

a:hover {
    color: white;
}