@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;400;700&display=swap");

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

body {
  font-family: "Inter", sans-serif;
}

#start .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-wrap: wrap;
  background: url("./blobs.png") no-repeat, url("./blob5.png") no-repeat;
  background-position: right top, left bottom;
}

#start > h1,
p {
  margin-bottom: 30px;
}

.main-button {
  width: 193px;
  height: 52px;
  background: #4d5b9e;
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
}

.check-button {
  width: 193px;
  height: 52px;
  background: #4d5b9e;
  border-radius: 15px;
  color: #fff;
  margin: 0 auto;
  cursor: pointer;
}

#quiz .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-wrap: wrap;
  background: url("./blobs.png") no-repeat, url("./blob5.png") no-repeat;
  background-position: right top, left bottom;
}
.check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.check h3 {
  margin-bottom: 0;
  padding-right: 30px;
}

.question {
  padding: 30px;
  border-bottom: 1px solid #dbdef0;
  width: 90%;
  margin: 0 auto;
}

.question h2 {
  line-height: 30px;
  padding-bottom: 20px;
}

.quiz-container {
  background: url("./blobs.png") no-repeat, url("./blob5.png") no-repeat;
  background-position: right top, left bottom;
  color: #293264;
  padding-top: 30px;
  padding-bottom: 130px;
  height: 100vh;
  overflow: auto;
}
.answer {
  color: #293264;
  border: #4d5b9e 1px solid;
  border-radius: 7.94239px;
  padding: 3px;
  margin: 0 5px 5px 0;
  display: inline-block;
  cursor: pointer;
}
.selected {
  background: #d6dbf5;

  color: #293264;
  border: #d6dbf5 1px solid;
  border-radius: 7.94239px;
  padding: 3px;
  margin: 0 5px 5px 0;
  display: inline-block;
}

.correct {
  background: #94d7a2;
  cursor: pointer;
  color: #293264;
  border: #94d7a2 1px solid;
  border-radius: 7.94239px;
  padding: 3px;
  margin: 0 5px 5px 0;
  display: inline-block;
}
.No {
  background: #f8bcbc;
  opacity: 0.5;
  cursor: pointer;
}
