@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background: #666
  font-family: 'Roboto', sans-serif;
}

.start-quiz-btn{
  all: unset;
  padding: 15px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%, -50%);
  background: pink;
  color: #666;
  text-align: center;
  cursor: pointer;
  font-size: 25px;
  white-space: nowrap;
  border-radius: 5px;
}

.container{
  height: 600px;
  width: 400px;
  background: pink;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%, -50%);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.top-btn{
  height: 600px;
  width: 400px;
  box-shadows: rgb(0, 0, 0, 24) 0px 3px 8px;
  position: absolute;
  display: flex;
  align- items: center;
}

.question-counter{
  position: relative;
  left: 30px;
}

.timer{
  height: 35px;
  width: 80px
  background: blue;
  border-raduis: 3px;
  position: absolute;
  right: 20px;
}

.timer > span:nth-child(1){
  color: red;
  font-size: 23px;
  position: relative;
  top: 1px;
  left: 13px;
}

.timer > span:nth-child(2){
  color: black;
  position: relative;
  top: 0px;
  left: 10px;
  padding: 3px 10px 3px 10px;
  border-raduis: 3px;
  font-size: 20px;
}

.ques-text{
  height: 100px;
  width:350px;
  color: purple;
  position: relative;
  top: 120px;
  transform:translate(-50%, -50%);
  display: flex;
  align-items: center;
  font-weight: 600;
}

ques-text > span{
  font-size: 20px;
  color: black;
  margin-left: 5px;
}