@font-face {
    font-family: 'Cafe24Supermagic-Bold-v1.0';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-2@1.0/Cafe24Supermagic-Bold-v1.0.woff2') format('woff2');
    font-style: normal;
}

:root {
    --main-color: #0048A8;
    --text-color: #fff;
    --main-font: 'Cafe24Supermagic-Bold-v1.0';
    --main-weight: 500;
    --sub-font: 'TheJamsil5Bold';
}

#main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#title {
    color: var(--main-color);
    font-size: 12rem;
    font-family: var(--main-font);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#start-button {
    width: 20vw;
    height: 7vh;
    background-color: var(--main-color);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--text-color);
    font-family: var(--main-font);
    font-size: 2rem;

    cursor: pointer;
    transition: 0.3s;
}


#start-button:hover {
    background-color: #fff;
    color: var(--main-color);
    border: 3px solid #0048A8;
}
