/* MAIN SCREEN: CSS Code */

@import url("https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@100..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700&display=swap");

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  background-color: #9bbf23;
}

main {
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex: auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

h1 {
  font-size: 4.8rem;
  font-weight: 800;
  color: black;
  text-shadow: 3px 3px 2px #d7e6a5, -3px 3px 2px #d7e6a5, -3px -3px 0 #d7e6a5,
    3px -3px 0 #d7e6a5;
}

.title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-section span {
  font-size: 2.4rem;
  font-weight: 500;
}
.start-button {
  width: 26rem;
  min-height: 6rem;
  font-size: 2.4rem;
  font-weight: 800;

  color: #000000;
  background-color: #d9d9d9;
  border: 8px solid #637623;
  border-radius: 43px;
  text-align: center;
  padding-top: 6px;
}

.start-button:hover {
  background-color: #c3c3c3;
}

.start-button:active {
  background-color: #b6b5b5;
}

.turtle {
  max-width: 20rem;
}

.hide {
  display: none;
}

/* ///////////////////////////////////////////////////////// */
/* MEDIA QUERIES */
/* ///////////////////////////////////////////////////////// */

@media (max-width: 25.625em) {
  .leaves {
    width: 30rem;
  }

  h1 {
    font-size: 3.6rem;
    font-weight: 800;
    color: black;
    text-shadow: 3px 3px 2px #d7e6a5, -3px 3px 2px #d7e6a5, -3px -3px 0 #d7e6a5,
      3px -3px 0 #d7e6a5;
  }
}
