
body{
    background-color: #020e1d;
    height: 100vh; 
    /* border: 1px solid wheat; */
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.content {
    background-color: #f5f5f5;
}


h1 {
    text-align: center;
    color : #020e1d;
    font-family:monospace
}

h2 {
    text-align: center;
    color : #020e1d;
    font-family:monospace;
}

.description {
    /* padding: 10px; */
}

.app {
    background: none;
    height: 90vh;
    max-width: 800px;
    width: 100%;
    margin: 0px auto;
}

.app h1 {
    text-align: center;
    color:wheat;
    font-family:monospace;
    font-weight: 600;
    border-bottom: 2px solid #020e1d;
    padding-bottom: 30px;
}

.app p {
    color: wheat;
    font-family:monospace;
    font-weight: 600;
    margin-bottom: 20px;
}

.quiz {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.quiz h2 {
    color: #020e1d;
    font-family:monospace;
    font-weight: 600;
    margin-bottom: 20px;
}

.answerbtn {
    background-color: transparent;
    background-repeat: no-repeat;
    display: inline-block;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    color: #bbd1ea;
}

.answerimg {
    width: 7.5vw;
}

.answerbtn:hover:not([disabled]) {
    transform: translateY(-10px) scale(1.1);
}

.answers {
    /* display: flex; */ 
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.question-container {
    /* display:flex; */
    width: 10vw;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 0%;
}

#score-container {
    color: wheat;
}

.question-container img {
    width: 1vw;
    /* border-radius: 10px;
    margin-bottom: 20px; */
}

#next {
    background: #020e1d;
    color: wheat;
    font-size: monospace;
    width: 150px;
    border:0;
    cursor: pointer;
    padding: 10px;
    margin: 20px auto 0;
    display: none;
}


.correct {
    filter: hue-rotate(120deg);
    background: green;
}

.wrong{
    filter: brightness(50%);
    /* background: red;   */
}

.proffesor {
    flex-shrink: 0;
    text-align: right;
    margin: 0 auto;
    display: block;
    border: #bbd1ea;
    border-width: 1px;
    height: 20vh;
}

.content {
    display:flex;
    height: 80vh;
}
.proffessor img {
    vertical-align: top;
}

.spin {
    animation: spin 5s alternate-reverse infinite; /* Adjust the duration and timing function as needed */
}

@keyframes spin {
    from { transform: rotate(0deg) scale(100%); }
    to { transform: rotate(360deg) scale(50%); }
}


label {
    color: rgb(235, 105, 115);
    font-family:monospace;
    font-weight: 600;
}

.difficulty {
    color: rgb(235, 105, 115);
    font-family:monospace;
    font-weight: 600;
    text-align: center;
    align-items: center;
    width: 100%;
}

.headbanner {
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: #041223;
    width: 100%;
}
.headbanner figure {
    text-align: center;
    margin: 0px;
    color: #bbd1ea;
    font-family: monospace;
}

.custom-button {
    background-color: #070606;
    color: #bbd1ea;
    border-radius: 5px;
    margin-right: 10px;
    margin-left: 10px;
    transition: 0.2s;
    cursor:pointer;
}

.custom-button:hover{
    transform: translateY(-10px) scale(1.15);
}