@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap");
:root {
  --bg-color: #001a0b;
  --second: #002F14;
  --shadow: #00933F;
  --light-green: #51C285;
}

.button {
  display: flex;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid var(--light-green);
  padding: 10px 15px 10px 15px;
  text-decoration: none;
  color: var(--light-green);
  transition: 0.2s;
  font-weight: 600;
  margin-top: 10px;
  box-shadow: 0px 0px 15px rgba(81, 194, 134, 0.4745098039);
  align-items: center;
}
.button i {
  color: var(--light-green);
  transition: 0.2s;
}

.button:hover {
  background-color: var(--light-green);
  color: var(--bg-color);
}
.button:hover i {
  color: var(--bg-color);
}

* {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  color: white;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.view {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-los {
  position: absolute;
  top: 0;
  z-index: -1;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1050px;
}

header {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 30px;
  align-items: center;
}
header img {
  width: 200px;
}
header h1 {
  font-size: clamp(20px, 5vw, 50px);
  text-align: center;
  font-weight: 400;
}
header h1 span {
  font-size: 35px;
}

main {
  max-width: 2300px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.link-container .bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  width: 400px;
  height: 400px;
}
.link-container .bg h1 {
  font-size: clamp(10px, 6vw, 45px);
  font-weight: 400;
  text-align: center;
}

.half-con {
  width: 100%;
  position: relative;
  z-index: -1;
  margin-top: -100px;
}
.half-con img {
  position: absolute;
  width: 100%;
  max-width: 600px;
  right: -20px;
  top: -560px;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-image: linear-gradient(to top, #01381A, transparent);
  margin-top: 100px;
  padding: 20px;
}
footer img {
  max-width: 150px;
}
footer .row {
  width: 100%;
  justify-content: center;
  gap: 6px;
  align-items: start;
  flex-wrap: wrap;
}
footer p {
  display: flex;
  align-items: start;
  text-align: center;
  flex-direction: row;
  gap: 6px;
}
footer a {
  max-width: 70px;
  width: 100%;
  height: 25px;
  background-image: url("../assets/img/logo_room.png");
  background-size: cover;
}

@media (max-width: 768px) {
  main {
    gap: 80px;
  }
  .half-con {
    display: none;
  }
  .link-container {
    margin-top: 50px !important;
  }
  .link-container .bg {
    width: 300px;
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */