body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #34495e;
}

h1 {
    color: #333;
}

form {
    margin-bottom: 20px;
}

hr{
    background-color: #d0d3d4;
    border-radius: 15px;
    height: 2px;
    border: none;
    margin: 0;
}

.container{
    display: flex;
    justify-content: center;
    height: 94vh;
    align-items: center;
}

.question-section{
    background-color: #f5f6f7;
    border-radius: 10px;
    height: fit-content;
    width: 100%;
    max-width: 600px;
    padding: 10px 20px 10px 20px;
    display: flex;
    flex-direction: column;
}

.question-section form{
    display: flex;
    flex-direction: column;
}

.question-section form hr{
    margin-top: 20px;
}

.question-section label, .question-section input{
    margin: 10px 5px 10px 5px;
}

.question-section input{
    cursor: pointer;
}

.question-section button{
    cursor: pointer;
    margin-top: 20px;
    font-size: 15px;
    width: 145px;
    background-color: #3498db;
    color: #f5f6f7;
    font-weight: bold;
    padding: 10px;
    border: 0;
    border-radius: 10px;
}

.end-section{
    text-align: center;
    background-color: #f5f6f7;
    border-radius: 10px;
    height: fit-content;
    width: 100%;
    max-width: 600px;
    padding: 10px 20px 10px 20px;
    display: flex;
    flex-direction: column;
}

.end-section h2 span{
    font-size: 30px;
    color: #3498db;
}

.timer-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}