@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&family=Poppins:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
  user-select: none;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #334756;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.question {
  width: max(50vw, 300px);
  height: 400px;
  margin: 25px;
  padding: 15px;
  border-radius: 2.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  resize: none;
  outline: none;
  background-color: #fef9ef;
  color: black;
  user-select: none;
  cursor: default;
}

.btn {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.btn:hover .btn-slide-show-text1 {
  margin-left: 65px;
}
.btn-rect-to-round {
  height: 55px;
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s ease-in 0s;
}

.btn-rect-to-round:hover {
  border-radius: 60px;
  color: rgb(255, 255, 255) !important;
}

.btn-rect-to-round--orange {
  border: 2px solid #fee440;
  color: #fee440 !important;
}

.btn-rect-to-round--orange:hover {
  border-color: #fee440;
  background: #fee440;
}

.btn-rect-to-round--red {
  background-color: rgb(239, 35, 60);
  border: 2px solid rgb(239, 35, 60);
  color: rgb(255, 255, 255) !important;
}

.btn-rect-to-round--red:hover {
  border-color: rgb(239, 35, 60);
  background: rgb(239, 35, 60);
}

.btn-rect-to-round--green {
  background: rgb(54, 231, 95);
  border: 2px solid rgb(54, 231, 95);
  color: rgb(255, 255, 255) !important;
}

.btn-rect-to-round--green:hover {
  border-color: rgb(54, 231, 95);
  background: rgb(54, 231, 95);
}

.btns {
  display: flex;
  justify-content: space-evenly;
  width: 100vw;
  margin: 25px auto;
}

.invisible {
  display: none;
}

.score {
  text-align: center;
  font-size: 3rem;
  margin: 15px auto;
  color: #fff;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 50%;
  }
}
