* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: monospace;
}

body {
     background-color: rgb(223, 223, 223);
    justify-content: center;
    margin: auto;
    padding: 55px;
    text-align: center;
}

/* welcome */
#headline {
    width: 100%;
    padding-bottom: 2vw;
    font-size: 1vw;
}

/* timer and score */
aside {
    position: relative;
    text-align: left;
    padding-left: 3vw;
    font-size: 1.5vw;
    font-weight: bold;
}

#score {
    padding-bottom: 3vw;
}

/* questions and answers */
main {
    background-color: rgba(158, 157, 157, 0.733);
    box-sizing: initial;
    box-shadow: 0px 0px 7px 1px black;
    border-radius: 3px;
    margin: auto;
    padding: 20px;
    position: relative;
    text-align: center;
    padding-left: initial;
    padding-right: initial;
}

#quiz-questions {
    padding-top: 1vw;
    padding-bottom: 3vw;
    font-size: 1.5vw;
}

/* button */
 .answer-box button {
    width: 20%;
    height: 5vw;
    border-radius: 3px;
    font-size: 1.5vw;
}

button:hover {
    background-color: rgb(226, 226, 226);
    border-radius: 3px;
    cursor: pointer;
}

/* start button */
.start {
    margin-top: 5vw;
    width: 15%;
    height: 5vw;
    background-color: rgb(82, 116, 82);
    border-radius: 3px;
    font-size: 1.5vw;
    font-weight: bold;
    margin-bottom: 5vw;
}

#winner-name {
    background-color: rgba(158, 157, 157, 0.733);
    box-shadow: 0px 0px 7px 1px black;
    border-radius: 3px;
    margin: auto;
    height: 10vw;
    width: 50vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    
}

ul {
    list-style: none;
    margin: auto;
    padding-top: 6vw;
    
}

input {
    padding-right: 50px;
    height: 3vw;
    
}

/* .name-btn */
.winner-name button {
    height: 50%;
    width: 10%;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-weight: bolder;
    font-size: 1vw;
}