
@font-face {
    font-family: 'Adwaita';
    src: url("/fonts/AdwaitaMono-Regular.ttf") format("truetype");
    font-style: monospace;
}

body {
    font-family: 'Adwaita', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white
}

.header {
    background-color: white;
    color: black;
}

.header-inner {
    display: flex;
    align-items: center;
}

.site-nav a{
    color: black;
    text-decoration: none;
    margin-left: 20px;
}

.logo {
    height: 64px;
    margin-left: 24px;
}

.logo-img {
    height: 64px;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.button {
    background-color: purple;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 24px;
    margin: 20px;
    transition: all 0.3s ease;
}

.button:hover {
    scale: 1.05;
}