*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    width: 100vw;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
}

body {
  font-family: Arial, sans-serif;
  
}

.container {
 width: 100%;
height: 100%;
  background-color: rgb(0, 0, 0);

}
h2 {
  padding: 30px;
  font-size: 3vw;
  color: white;
}

.options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 30px;
}
.options-label{
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.5vw;
  width: 300px;
  height: 100px;
  background-color: yellow;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
  color: black;
}

.options-label:hover{
 
  background-color: rgb(223, 223, 6);
}

button {
  margin: 30px;
  width: 100px;
  height: 50px;
  font-size: 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

button:hover {
  background-color: #0056b3;
}
#timer{
  
  font-size: 2vw;
}
#details{
  width: 100%;
  height: 50px;
  background-color: #007bff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  gap: 80vw;
}
#q-num{
  font-size: 2vw;
}


@media only screen and (max-width: 380px){
  #details{
    gap: 55vw;
  }
#timer{
  font-size: 5vw;
}
#q-num{
  font-size: 5vw;
}
h2 {
  padding-top: 10px;
  padding: 10px;
  font-size: 6vw;
  color: white;
}
.options {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 7vw;
}
.options-label{


justify-content: start;
align-items: start;
  gap: 10px;
  font-size: 4vw;
  width: 200px;
  height: 50px;
  background-color: black;
  color: white;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
 
}

button {
  margin: 30px;
  width: 100px;
  height: 50px;
  font-size: 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.options-label:hover{
 
  background-color: rgb(0, 0, 0);
}

}