@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "Eyes for Serifs";
  src: url("/eyesforserifs-light.otf");
}

* {
  margin: 0;
  padding: 0;
}

.construction-container {
  background-color: #e7ecd9;
  color: #b77b52;
}

.background-shape {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("/background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

h1 {
  font-family: "Eyes for Serifs";
  font-size: 80px;
  margin-bottom: 15px;
}

h2 {
  font-family: "Eyes for Serifs";
}

.socials {
  font-family: "Inter";
  margin-top: 70px;
}

.socials p {
  font-size: 20px;
  margin-bottom: 10px;
}

a {
  margin: 20px 15px;
}

a i {
  font-size: 28px;
  color: #b77b52;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icons a:hover i {
  transform: scale(1.3);
  color: #647b4d;
}
@media (max-width: 500px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 20px;
  }
}
