@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&display=swap");
.language-selection-container {
  position: absolute;
  z-index: 2;
}
.language-selection-container > button {
  border: none;
  background-color: transparent;
  color: white;
  font-family: roboto, sans-serif;
  font-size: 17px;
  transition: color 0.2s;
}
.language-selection-container > button:hover {
  color: gray;
}
@media (orientation: portrait) {
  .language-selection-container > button {
    font-size: 40px;
  }
}

.socials-bar-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 80px;
  z-index: 2;
}
@media (orientation: portrait) {
  .socials-bar-container {
    height: 200px;
  }
}
.socials-bar-container > .socials-div {
  display: flex;
  gap: 15px;
}
@media (orientation: portrait) {
  .socials-bar-container > .socials-div {
    gap: 30px;
  }
}
.socials-bar-container > .socials-div > a {
  color: white;
  height: 28px;
  width: 28px;
  transition: color 0.2s;
}
@media (orientation: portrait) {
  .socials-bar-container > .socials-div > a {
    height: 70px;
    width: 70px;
  }
}
.socials-bar-container > .socials-div > a:hover {
  color: gray;
}
.socials-bar-container > .socials-div > a > svg {
  height: 100%;
  width: 100%;
}
.socials-bar-container > .info-div {
  position: absolute;
  display: flex;
  top: 40%;
  left: 45%;
  width: 350px;
  height: 50px;
}
@media (orientation: portrait) {
  .socials-bar-container > .info-div {
    height: 100px;
    width: 500px;
  }
}
.socials-bar-container > .info-div > p {
  color: white;
  max-width: fit-content;
  font-family: roboto, sans-serif;
  align-self: flex-end;
}
@media (orientation: portrait) {
  .socials-bar-container > .info-div > p {
    font-size: 30px;
  }
}
.socials-bar-container > .info-div > svg {
  height: 100%;
}
@media (orientation: portrait) {
  .socials-bar-container > .info-div > svg {
    width: 200px;
  }
}

.top-section-container {
  position: relative;
  display: flex;
  height: 100vh;
  width: 100vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: roboto, sans-serif;
}
.top-section-container > * {
  color: white;
}
.top-section-container > h1 {
  font-size: 175px;
  text-transform: uppercase;
}
@media (orientation: portrait) {
  .top-section-container > h1 {
    font-size: 250px;
  }
}
.top-section-container > p {
  font-size: 20px;
  text-align: center;
  padding: 0 20px;
}
@media (orientation: portrait) {
  .top-section-container > p {
    font-size: 40px;
  }
}
.top-section-container > .bottom-left-aside {
  position: absolute;
  top: 99%;
  left: 1%;
  transform: translateY(-100%);
}
.top-section-container > .bottom-left-aside > h2 {
  font-size: 16px;
  font-weight: normal;
}
@media (orientation: portrait) {
  .top-section-container > .bottom-left-aside {
    visibility: hidden;
  }
}
.top-section-container > .bottom-right-aside {
  position: absolute;
  top: 99%;
  left: 99%;
  width: max-content;
  min-width: max-content;
  transform: translate(-100%, -100%);
  text-align: right;
}
.top-section-container > .bottom-right-aside > h2 {
  font-size: 16px;
  font-weight: normal;
}
@media (orientation: portrait) {
  .top-section-container > .bottom-right-aside > h2 {
    font-size: 30px;
  }
}
@media (orientation: portrait) {
  .top-section-container > .bottom-right-aside > p {
    font-size: 30px;
  }
}

* {
  margin: 0;
  padding: 0;
  cursor: url("/assets/cursor.cur"), default;
}

body {
  background-color: black;
}

::selection, ::-moz-selection {
  background: white;
  color: black;
  text-shadow: none;
}

.text-link {
  color: darkgray;
  transition: color 0.2s;
}
.text-link:hover {
  color: gray;
}

.socials-bar {
  top: 10px;
  left: 10px;
}
@media (orientation: portrait) {
  .socials-bar {
    top: 40px;
    left: 20px;
  }
}

.language-selection {
  top: 10px;
  left: calc(100% - 10px);
  transform: translateX(-100%);
}
@media (orientation: portrait) {
  .language-selection {
    top: 40px;
    left: calc(100% - 20px);
  }
}
