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

main {
  max-height: 100vh;
  background-image: url("../assets/background-images/bg-malvinportner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
}

.divider {
  width: 60px; /* Adjust width of the line */
  height: 2px; /* Adjust thickness of the line */
  background-color: #ffffff; /* White color for the line */
  margin: 20px auto; /* Centers the line horizontally and adds space above/below */
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: nowrap;
}
img {
  width: 2rem;
  height: auto;
}

@media only screen and (max-width: 480px) {
  main {
    max-height: 100vh;
    background-image: url("../assets/background-images/background-img-malvin-9x16-bw.webp");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
