@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

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

body {
  font-family: "Roboto", sans-serif;
  background-color: #000;
  color: #fff;
}

.main {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
}

.main .wildlife {
  display: flex;
  justify-content: space-between;
  padding: 150px 0;
  overflow-y: hidden;
  overflow-x: hidden;
}

.images {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.images img {
    width: 600px;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.hero {
  background-image: url("/assets/lake.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(29, 29, 29);
}

.hero h1 {
  font-size: 96px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}

.hero .buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.hero .buttons button {
  padding: 7px 25px;
  border: none;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 700;
  background-color: rgb(0, 46, 68);
  color: rgb(57, 192, 255);
  transition: all 0.3s ease-in-out;
}

.hero .buttons button:hover {
  transform: scale(1.1);
}

.scrollsnappy {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.scrollsnappy section {
  scroll-snap-align: start;
}

section {
  height: 100vh;
}

@media only screen and (max-width: 1280px) {
  .main {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1024px) {
  .main {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
}

@media only screen and (max-width: 640px) {
  .main {
    width: 100vw;
  }
  h1 {
    font-size: 24px !important;
    text-align: center;
  }

  h2 {
    font-size: 26px;
  }
  p {
    font-size: 16px !important;
  }
}

.about {
  display: flex;
  justify-content: space-between;
  padding: 150px 0;
}

h2 {
  padding: 20px 0;
}

.about h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  margin: 0 150px 0 0;
}

.about .info {
  flex-basis: 50%;
}

.about img {
  width: 45%;
  height: 45%;
  object-fit: cover;
  margin: 20px;
  transition: all 0.3s ease-in-out;
}

.about img:hover {
  transform: scale(1.1);
}

.carousel {
  animation: marquee 10s linear infinite;
  display: inline-flex;
  overflow-x: hidden;
  gap: 20px;
}

.carousel:hover {
  animation-play-state: paused;
}

.carousel .list {
  white-space: nowrap;
  display: inline-flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: hidden;
}

.carousel .list img {
  width: 450px;
  height: 250px;
  transition: all 0.3s ease-in-out;
}



@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

code {
    font-size: 20px;
    margin: 5px 0;
}

.videos {
    padding: 100px 0;
}

.enviroment {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    flex-direction: column;
}

.enviroment div {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.enviroment div img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.livetemp {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sizes {
    display: flex;
    justify-content: space-around;
    padding: 120px 0;
}

.sizes div img {
    width: 500px;
    height: 50%;
    background-color: white;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.sizes div img:hover {
    transform: scale(1.1);
}

.sizes div h3 {
    font-size: 24px;
    font-weight: 700;
    padding: 20px 0;
}

.stats div p {
    font-size: 36px;
    font-weight: 500;
    padding: 20px 0;
}

.videos .yt {
    display: flex;
    justify-content: space-between;
    padding: 200px 0;
}

.videos .yt iframe {
    width: 50%;
    gap: 20px;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}