@font-face {
    font-family: OpenDyslexic;
    src:
        url("../assets/OpenDyslexic-Regular.otf");
}

@font-face {
    font-family: Futura;
    src:
        url("../assets/futura-medium-bt.ttf");
}

html {
    font-family: Futura !important;
}

body {
    text-align: center;
    background-color: black;
}

#logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 25%;
    transform: translateX(-50%);
}

#counter {
    color: white;
    position: absolute;
    bottom: 0;
    right: 10px;
}

#main-content {
    margin-top: 40vh;
}

#question {
    font-size: 60px;
    margin-bottom: 30px;
    color: white;
}

#button {
    font-family: Futura;
    font-size: 25px;
    background-color: #0074D9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#button:hover {
    background-color: #0056A0;
}

#button:disabled {
    background-color: #7e7e7e;
}