* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.background {
  /*background: url("../img/boat.avif") no-repeat center center/cover; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.6);
}
.content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 90%;
}
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.contact {
  font-size: 1rem;
  opacity: 0.9;
}
.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.lang-switch a {
  color: #ffd60a;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.lang-switch a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  p {
    font-size: 1rem;
  }
  .content {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 0.9rem;
  }
  .lang-switch {
    top: 10px;
    right: 10px;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
  }
}
