body {
  background-color: beige;
  align-content: center;
  align-items: center;
  height: 100vh;
}

.geo-regular {
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.geo-regular-italic {
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: italic;
}

#grid-box > img {
  border: 4px solid black;
  width: 100%;
}
#grid-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2%;
  padding-left: 1%;
  padding-right: 1%;
}

#parent-question {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-columns: 3fr 6fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

/* break point 4 phone */
@media (max-width: 1000px) {
  #grid-box {
    grid-template-columns: repeat(3, 1fr);
  }
  #zoomedLocker {
    display: none;
  }
  #parent-question {
    grid-template-columns: none;
  }
}
a {
  text-decoration: none;
}

/* break point for tablet */
@media (max-width: 1500px) {
  #grid-box {
    grid-template-columns: repeat(4, 1fr);
  }
}

#overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80vh;
  width: 80vw;
  background-color: gray;
  padding: 10px 40px;
}

#question-form {
  margin-bottom: 20%;
}

#question-form > h2 {
  font-size: 200%;
}
#question-area {
  font-size: 150%;
}
#question-area > label {
  font-size: 100%;
}
#zoomedLocker {
  height: 60vh;
  width: auto;
}

.google-sans-flex {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
}

input {
  font-size: 2rem;
  height: 40px;
  padding: 5px;
  font-family: "Google Sans Flex", sans-serif;
}

textarea {
  font-size: 1.5rem;
  font-family: "Google Sans Flex", sans-serif;
  padding: 5px;
}

#submit-btn {
  font-size: 1rem;
  padding: 5px;
  margin: 10px 0;
  font-family: "Google Sans Flex", sans-serif;
}

#secret > h1 {
  font-size: 300%;
  font-weight: bold;
}
#secret > p {
  font-size: 1.5rem;
  font-family: "Google Sans Flex", sans-serif;
}

#ad3 {
  position: fixed;
  height: 15vh;
  background-color: rgb(205, 24, 24);
  top: 20px;
  left: 10vw;
  width: 80vw;
  border: 3px solid;
  animation: borderColorChange 1s infinite;
}

#ad4 {
  position: fixed;
  width: 20vw;
  height: 40vh;
  right: 0;
  bottom: 20vh;
  background-color: rgb(40, 29, 255);
  border: 3px solid;
  animation: borderColorChange 1s infinite;
}

#ad5 {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 25vw;
  width: 25vw;
  background-color: blueviolet;
}

@keyframes borderColorChange {
  0% {
    border-color: red;
  }
  50% {
    border-color: yellow;
  }
  100% {
    border-color: green;
  }
}
#ad7 {
  position: fixed;
  bottom: 20%;
  left: 10vw;
  height: 15vh;
  width: 50vw;
  background-color: blueviolet;
}

#ad8 {
  position: fixed;
  width: 80vw;
  height: 15vh;
  left: 20vw;
  bottom: 5vh;
  background-color: pink;
}

#ad9 {
  position: fixed;
  width: 20vw;
  height: 50vh;
  left: 0;
  top: 15vh;
  background-color: rgb(167, 0, 75);
}

#ad10 {
  position: fixed;
  width: 10vw;
  height: 40vh;
  right: 15vw;
  bottom: 40vh;
  background-color: rgb(92, 76, 117);
}

.hidden {
  display: none !important;
}

.horizontalBox {
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 3fr;
  gap: 20px;
  height: 100%;
}

.horizontalAd {
  width: 100%;
  height: 20vh;
  object-fit: cover;
  animation: panAdUpDown 1s ease-in-out infinite alternate;
}

@keyframes panAdUpDown {
  from {
    transform: translateY(-20%);
  }
  to {
    transform: translateY(0%);
  }
}
.title {
  font-size: 150%;
  margin: 0;
  color: white;
}
.text {
  font-size: 100%;
  text-decoration: none;
  margin: 0;
  color: white;
}

.horizontalText {
  height: 15vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 5px;
}

.fakeBnt {
  background-color: aqua;
  border-radius: 2px;
  padding: 5px;
}

.verticalBox {
  overflow: hidden;
  display: grid;
  gap: 5px;
  height: 100%;
  grid-template-rows: 50% 50%;
}

.verticalAd {
  height: 100%;
  width: 120%;
  object-fit: cover;
  animation: panAdLeftRight 2s ease-in-out infinite alternate;
}

@keyframes panAdLeftRight {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-10%);
  }
}

.verticalText {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 20px;
  padding: 5px;
}

.shaky {
  animation: shake 0.3s infinite;
}

@keyframes shake {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(1px, -1px);
  }
  50% {
    transform: translate(-1px, 1px);
  }
  75% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(-1px, -1px);
  }
}

.flash {
  animation: flash 0.6s infinite;
}

@keyframes flash {
  0% {
    background-color: red;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: red;
  }
}
