/* Import Nomaden font */
@font-face {
    font-family: 'Nomaden';
    src: url('../assets/Nomaden.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import JosefineSans-Regular font */
@font-face {
    font-family: 'JosefineSans';
    src: url('../assets/JosefinSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 20px);
    margin: 10px;
    background-color: #000;
    font-family: 'JosefineSans', 'Arial', sans-serif;
    color: #f0f0f0;
}

h1 {
    font-size: 3rem;
    margin: 0;
    text-align: center;
    font-family: 'Nomaden', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.countdown {
    font-size: 2rem;
    margin-top: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 30rem;
}

.logo {
    /* max-width: 30rem; */
    margin: 0 auto;
}

.footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-size: 0.8em;
    color: #777;
}