@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

*, *:before, *:after { box-sizing: border-box; }

body {
    margin: 0;
    background-color: #000;
    font-family: 'Open Sans', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    display: block;
    max-width: min(40vw,100%);
}

.links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.links a {
    color: #FFF;
    text-decoration: none;
    border-bottom: 1px solid #FFF;
    font-size: 24px;
}