@import "reset.css";
@import "fonts.css";
@import "menu.css";
@import "scrollbar.css";

html {
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  background-color: #f6f6ef;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 12vh);
  align-items: center;
  justify-content: center;
}

.main-content-div {
  display: flex;
  flex-direction: column;
  margin-top: -12vh;
  width: 40vw;
  min-width: 800px;
  gap: 5vh;
  padding-bottom: 5vh;
}

.social-content-div {
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: center;
  text-align: center;
  width: 40vw;
  min-width: 800px;
  gap: 3vh;
}

.social-icons {
  width: 20%;
  min-width: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  justify-content: space-around;
  padding-top: 20px;
}

.media {
  display: inline;
  text-align: center;
}

.icon {
  display: flex;
  width: clamp(32px, 3vh, 100px);
  height: auto;
  margin-right: 0.5vh;
}

.media svg {
  width: clamp(32px, 3vh, 50px);
  height: clamp(32px, 3vh, 50px);
  fill: #655a30;
}

.media svg:hover {
  fill: #fff;
}

.wrapper a {
  color: inherit;
  text-decoration: inherit;
}

.wrapper a:hover {
  color: #fff;
  text-decoration: inherit;
}

.wrapper h2 {
  font-family: "League Spartan";
  font-size: clamp(28px, 1.5vw, 50px);
  color: #655a30;
  text-align: center;
  flex-wrap: wrap;
}

@media only screen and (aspect-ratio: 3/2) {
  .wrapper {
    height: 80%;
  }
}

@media only screen and (min-width: 2700px) {
  .main-content-div {
    width: 60vw;
  }

  .social-content-div {
    width: 60vw;
  }

  .wrapper h2 {
    font-size: 2vw;
  }
}

@media only screen and (min-width: 5000px) {
  .wrapper {
    height: calc(100% - 600px);
  }

  .social-content-div {
    min-width: 70%;
    max-width: 80%;
  }

  .media svg {
    width: clamp(20px, 1.8vw, 200px);
    height: clamp(20px, 1.8vw, 200px);
  }
}

@media only screen and (max-aspect-ratio: 9/16) {
  .main-content-div {
    min-width: 70%;
    max-width: 80%;
  }

  .wrapper h2 {
    font-size: clamp(16px, 1.8vw, 20px);
  }

  .social-content-div {
    min-width: 70%;
    max-width: 80%;
  }

  .media svg {
    width: clamp(20px, 1.8vw, 24px);
    height: clamp(20px, 1.8vw, 24px);
  }
}

@media only screen and (min-height: 2000px) and (orientation: portrait) {
  .icon {
    width: clamp(32px, 10vh, 600px);
  }

  .media svg {
    width: clamp(32px, 5vh, 100px);
    height: clamp(32px, 5vh, 100px);
  }

  .social-icons {
    width: 80%;
  }

  .wrapper h2 {
    font-size: clamp(28px, 5vw, 200px);
  }
}

@media only screen and (orientation: portrait) {
  .main-content-div {
    width: 80vw;
    align-items: center;
  }

  h2 {
    max-width: 80vw;
    text-align: center;
  }

  .social-content-div {
    width: 80vw;
    align-items: center;
  }
}

@media screen and (orientation: landscape) and (max-width: 850px) and (max-height: 430px) {
  .main-content-div {
    min-width: 70%;
    max-width: 80%;
  }

  .wrapper h2 {
    font-size: clamp(16px, 1.8vw, 20px);
  }

  .social-content-div {
    min-width: 70%;
    max-width: 80%;
  }

  .media svg {
    width: clamp(20px, 1.8vw, 24px);
    height: clamp(20px, 1.8vw, 24px);
  }
}
