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

@import url("https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Arima:wght@100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 110% 110%, #ffbf00 10%, #232323 60%);
  height: 100svh;
  color: #fffff0;
}

a {
  font-family: Arima, Tahoma;
  text-decoration: none;
  color: #fffff0;
  font-size: clamp(0.8em, 2em, 1.7vw);
}

a:hover {
  background-color: rgba(255, 191, 0, 0.9);
  border-color: rgba(255, 191, 0, 0.9);
  transition: 0.35s;
}

h1 {
  color: #ffbf00;
  font-family: Tangerine, cursive;
  font-size: clamp(3em, 20em, 10vw);
  margin-bottom: 1%;
}

h3 {
  font-size: clamp(1em, 3.75em, 1.65vw);
  font-family: Arima;
  margin-top: 0.5em;
  line-height: 0.7;
  font-weight: 400;
}

h4 {
  font-size: clamp(2em, 6.5em, 3.2vw);
  font-family: "Reenie Beanie";
  margin-bottom: 0.7em;
  line-height: 0.7;
}

h4 span {
  color: transparent;
  -webkit-text-stroke: 1px #ffbf00;
  font-size: 2em;
}

span {
  font-family: Tangerine;
  font-size: 2em;
  color: #ffbf00;
}

#content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100svh;
  padding-top: 8svh;
  gap: 0;
  margin: 0 1em;
}

#image {
  max-height: 100svh;
  display: flex;
  align-items: end;
}

#image img {
  max-height: 60svh;
  max-width: 40vw;
}

#text {
  min-width: 55%;
  margin-top: 10svh;
  max-height: 80svh;
}

#container {
  max-height: 100svh;
  width: 95%;
  margin: auto;
  overflow: hidden;
  background-image: url(./img/eatSleepRepeat.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}

.buttons {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.buttons a {
  border: 2px solid #ffbf00;
  padding: 0.6em;
  border-radius: 50px;
  width: 90%;
  text-align: center;
  font-family: Arima;
  font-weight: 600;
}

@media (max-width: 576px) {
  #content {
    flex-direction: column;
    align-items: center;
  }

  #text {
    margin-top: 1svh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .buttons {
    width: 98%;
    margin-bottom: 1em;
  }

  #container {
    background-image: url(eatSleepRepeat.png);
    background-position: 80%;
  }

  #image img {
    max-width: 80%;
    margin: auto;
  }

  #img {
    max-height: 10svh;
    max-width: 90%;
  }

  body {
    background: radial-gradient(circle at 50% 100%, #ffbf00 10%, #232323 50%);
  }
}
