@font-face {
    font-family: "BondStory";
    src: url("../font/BondStory.ttf") format("truetype");
}

* {
    font-family: "BondStory";
    user-select: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    gap: 6rem;
    flex-direction: column;
    background-color: #13c3e3;
}

#info-question {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
}

#question-count {
    width: 2rem;
}

#button {
    background-color: #add8e6;
    cursor: pointer;

    &:hover {
        background-color: #a4ccd9;
    }

    &:active {
        background-color: #add8e6;
    }
}

#lessons,
#button,
#question-count {
    /* font-size: 1.2rem; */
    font-size: 2rem;
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid #000;
}

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* .no-spin {
    -moz-appearance: textfield;
} */

#input-answer {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    text-align: center;
}

.title {
    font-size: 4rem;
    text-align: end;
    position: relative;
    letter-spacing: 2px;
}

.title::after {
    content: "Elementary";
    position: absolute;
    bottom: -44px;
    right: 48px;
    font-size: 1.6rem;
    color: red;
    border-top: 4px solid red;
    padding-top: .6rem;
}

.sub-title {
    color: #fff;
}

#lessons {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 10px;
}