/* Creating varible */
:root {
    --white: #fff;
    --black: #1e1e1e;
    --blue: #243CFC;
}

body {
    background-color: var(--black);
}

main {
    width: 100%;
    height: calc(100vh - 40px);
    background-color: orange;
    background: url(../img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom, center;
    justify-content: center;
    align-items: center;
}

 .game-title {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 100px;
    margin-top: 30px;
    text-align: center;
}

/* .game-title h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 90px;
    text-align: center;
    color: var(--white);
} */

.caden-game-button {
    border-radius: 12px;
    font-size: 18px;
    display: block;
    color: var(--blue);
    background-color: var(--white);
    padding: 10px 20px;
    width: fit-content;
    margin-top: 30px;
    margin-left: 30px;
}

button:hover {
    cursor: pointer;
    border-radius: 12px;
}