@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #b8c6db;
 
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.quiz-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
  width: 500px;
  max-width: 95vw;
  overflow: hidden;
}

.quiz-header {
  padding: 1rem;
}

h2 {
  padding: 1rem;
  text-align: center;
  margin: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  font-size: 1.2rem;
  margin: 1rem 0;
}

ul li label {
  cursor: pointer;
}

button {
  background-color: #7b339b;
  color: #fff;
  border: none;
  display: block;
  width: 100%;
  cursor: pointer;
  font-size: 1.1rem;
  font-family: inherit;
  padding: 1.1rem;
}

button:hover {
  background-color: #732d91;
}

button:focus {
  outline: none;
  background-color: #5e3370;
}

#cross
{
  font-size:25px;
  float:right;
  padding:10px;
  cursor:pointer;
  text-decoration: none;
  color:black;
}

#alert_wer
{
  color:red;
  font-size:50px;
  border:1px solid green;
  display: none;
}
#name
{
 
  
  position: absolute;
  top:50px;
  background-color: rgba(0,0,0,0.7);
  width:100%;
  height:100vh;
  z-index:1000000;
  
}

#profile_name
{
  width:400px;
  height:400px;
  border:1px solid red;
}