@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik Mono One';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rubik-mono-one-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body, html {
    height: 100%;
    margin: 0;
    background-color: black;
    color: white;
}

.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.text-container {
    display: flex;
    flex-direction: row;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
}

#fade-in-first-moin {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

#fade-in-second-moin {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.rubik-mono {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    color: #c9c9c9;
}

