@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

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

html, body {
  height: 100%;
}

body {
  margin: 0 auto;
  min-height: 100vh;
  max-width: 100vh;
  background-image: url(assets/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 200px 0px;
}

.title-container {
  font-family: "Oswald", sans-serif;
  font-size: clamp(45px, 10vw, 140px);
  gap: 0.18em;
  font-weight: 700;
  font-style: normal;
  display: flex;
  flex-direction: row;
}

.green {
  color: rgb(45, 101, 43);
  margin: 0;
}

.desert {
  color: white;
  margin: 0;
}

.comment {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(30px, 8vw, 90px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
}

.logo {
  width: 25%;
  height: auto;
}

@media (max-width: 1200px) {
  .logo {
    width: 250px;
    max-width: 90vw;
  }
}

@media (max-width: 780px) {
  body {
    background-image: url(assets/background-m.png);
  }
}