html {

}

body {
    margin: 0;
    padding: 0;
    background:  #E45A92;
    color: #3E1E68;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    font-family: Arial, sans-serif;
}

.input {
    border: none;
    border-bottom: 2px solid #3E1E68;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 16px;
    border-radius: 4px;
    height: 40px;
    width: min(100%, 400px);
    box-sizing: border-box;
}

.button {
    background-color: #3E1E68;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.question {
    font-size: 4rem;
}

.finished .question {
    display: none;
}

.finished .answers {
    display: none;
}

.restart {
    display: none;
}

.finished .restart {
    display: block;
    margin-top: 1rem;
}