* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-color: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    width: 1500px;
    background-color: #cc5959;
    border-radius: 100px;
    flex-direction: column;
    border: 10px solid #bd4545;
    position: relative;
}

.quiz-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.quiz-text {
    text-align: center;
    text-align-last: center;
    font-size: 80px;
    color: white;
    text-shadow: 2px 2px 0 #777777;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reply-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.display {
    display: none;
}

.btn {
    height: 80px;
    width: 320px;
    border: 4px solid #a1a1a1;
    border-radius: 20px;
    background-color: gray;
    font-size: 40px;
    color: white;
    text-shadow: 2px 2px 0 #4b4b4b;
    cursor: pointer;
    box-shadow: 2px 2px 0px #646464;
    transition: 0.2s ease;
}

.btn:hover {
    transform: scale(0.95);
}

.transition-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 20px;
}

.transition-btn {
    height: 80px;
    width: 80px;
}

.answer-control-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 800px;
    width: 1500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s ease opacity;
    position: absolute;
    border-radius: 100px;
    background-color: rgb(255, 255, 255, 0.8);
}

.answer-control {
    font-size: 100px;
    text-shadow: 1px 1px 0 #777777;
}

.wrong {
    background-color: #ee3636;
    border-color: #e03434;
}

.correct {
    background-color: #2dbd41;
    border-color: #2aad3c;
}