.Test {
    height: 800px;
    border-radius: 10px;
    box-shadow: 4px 4px 20px 3px rgba(0, 0, 0, 0.08);
    width: 60vw;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
}
.Test-NavBar {
    text-align: center;
    display: flex;
    justify-content: space-between;
    border-bottom: solid #c0c0c02f;
    padding: 5px 20px 10px 20px;
    margin-bottom: 30px;
}
.Test-NavBar span {
    font-size: 32px;
    font-weight: 500;
    color: #549DF2;
}

.Test-container {
    margin: 0 auto;
    width: 40%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 20px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: block;
}
.Test-container h1 {
    color: #549DF2;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 80px;
}
#Test-input {
    display: none;
    padding-inline: 10px;
    margin: 0 auto;
    width: 80%;
    height: 50px;
    font-size: 24px;
    border: solid #E3E3E3 1px;
    border-radius: 10px;
}
.Test-container button {
    margin-top: 50px;
}
.Test-question {
    display: none;
    justify-content: center;
    margin-bottom: 50px;
}
.Test-question p {
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    margin-right: 10px;
}
.Test-question span {
    color: #549DF2;
    font-size: 40px;
    font-weight: 500;
}

.Test-info {
    width: 95%;
    padding-inline: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: absolute;
    bottom: 0;
}
.Test-info h1 {
    font-size: 32px;
    font-weight: 500;
    margin: 5px 0 0 0 ;
    height: 50px;
}
.Test-info h1 span {
    color: #549DF2;
}
.Test-info button, .Test-container button {
    color: white;
    border-radius: 10px;
    border: none;
    background-color: #549DF2;
    font-size: 32px;
    justify-content: center;
    width: 200px;
    padding: 5px;
    cursor: pointer;
    transition: ease 200ms;
}
.Test-info button:hover {
    background-color: rgb(70, 123, 214);
}
.Test-answerContainer {
    display: flex;
    justify-content: space-between;
}
#AnswerOption {
    color: #868686;
    border-radius: 10px;
    border: none;
    background-color: #E6E6E6;
    font-size: 24px;
    max-width: 150px;
    padding: 5px;
    cursor: pointer;
    transition: ease 200ms;
    margin-top: 0;
}
#AnswerOption:hover {
    background-color: rgb(70, 123, 214);
    color: white;
}
#ChoosedAnswer {
    font-size: 24px;
    background-color: #549DF2;
    color: white;
    max-width: 150px;
    margin-top: 0;
}
.Test-answerChoosed {
    background-color: black;
}

@media (max-width: 800px) {
    .Test {
        margin: 0 auto;
        margin-top: 30px;
        width: 90%;
        height: 600px;
    }
    .Test-NavBar span {
        font-size: 24px;
    }
    .Test-container {
        width: 75%;
        height: 250px;
        padding-top: 10px;
    }
    .Test-container h1 {
        font-size: 26px;
        margin: 0;
    }
    .Test-question {
        margin-bottom: 35px;
    }
    .Test-question p {
        font-size: 26px;
    }
    .Test-question span {
        font-size: 26px;
    }
    #Test-Question {
        margin-bottom: 15px;
    }
    #Test-input {
        height: 40px;
        font-size: 22px;
    }
    #Test-button {
        width: 150px;
        font-size: 24px;
    }
    #AnswerOption {
        font-size: 20px;
        width: 150px;
        margin-inline: 5px;
    }
    #ChoosedAnswer {
        width: 150px;
        transform: scale(1.05);
        margin-inline: 5px;
        font-size: 22px;
    }

    .Test-info h1 {
        font-size: 24px;
    }
    .Test-info button {
        font-size: 24px;
        width: 130px;
        margin-right: 20px;
    }
}