@import url('./main.css');

/* explore banner */
.explore_banner {
  background: linear-gradient(#84ceeb, #381bed);
  height: 60vh;
}
.explore_banner {
  text-align: center;
  padding-top: 2%;
  font-weight: 700;
}
.input__container {
  margin-top: 1%;
  margin-left: 35%;
  display: flex;
}

.input__container input {
  display: block;
  border-radius: 10px;
  width: 25%;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  background-color: #e5e5e5;
  padding-left: 1%;
  padding-top: 2%;
  padding-bottom: 2%;
  margin: 2%;
  outline: none;
}
.input__container button {
  display: block;
  border-radius: 10px;
  border: none;
  background-color: #242bc2;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 30px;
  margin: 2%;
}
.input__container button:hover {
  cursor: pointer;
}

/* explore quizzes section */
.explore__quizzes {
  display: flex;
  justify-content: center;
  overflow-x: scroll;
  flex-direction: row;
}
.box {
  display: block;
  text-align: center;
  margin-right: 4%;
  border-radius: 10px;
  min-height: 300px;
  min-width: 300px;
  background-color: #5680e9;
  text-align: center;
  color: white;
}

.box h2,
h3 {
  margin-top: 5%;
}
/* media queries */
@media screen and (max-width: 600px) {
  .input__container {
    margin-top: 10%;
    margin-left: 28%;
  }
  .input__container input {
    width: 40%;
    padding: 20px;
    font-size: 0.7rem;
    font-weight: 100;
  }
  .explore_banner h1 {
    margin-top: 18%;
    font-size: xx-large;
  }
  .box .quiz__panel {
    width: 270px;
  }
}
