body {
    background-color: black;
    color: white;
}

h1, p {
    font-family: 'main', sans-serif;
    text-align: center;
    justify-content: center;
    display: flex;
}

h1 {
    font-size: 70px;
}

p {
    font-size: 40px;
}

@font-face {
    font-family: 'main';
    src: url('../assets/fonts/SpaceGrotesk-Regular.ttf');
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.create-button {
    font-family: 'main', sans-serif;
    font-size: 24px;
    color: white;
    background-color: #4a90e2;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.create-button:hover {
    background-color: #357ab8;
}
