@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #1f2128;
    color: #b5bac5;
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    user-select: none;
}

#logo {
    width: 100px;
    height: 100px;
}

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    height: 100vh;
}

h1,
h2 {
    text-align: center;
}

#link-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

a {
    background-color: #8f71de;
    border-radius: 0.25em;
    font-weight: bold;
    padding: 0.5em 1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #6e57ab;
}

a,
a:visited {
    color: #1f2128;
}

#canvas {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}