/* @import url(../fonts/fonts.css); */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #191919;
  --orange: #ff841f;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  /* background-image: url(/images/Background.webp); */
  background-color: var(--grey);
}

a {
  text-decoration: none;
}

h1 {
  font-size: clamp(5em, 10vw, 12em);
  color: var(--white);
  font-weight: 500;
  font-family: BIZANTHEUM;
  /* line-height: clamp(7rem, 20vh, 12rem); */
}

p {
  font-size: clamp(1.1rem, 1.75vw, 2rem);
  color: var(--white);
}

/* img {
  max-width: 100%;
} */

.wrapper {
  max-width: 500px;
  width: 100vw;
  height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 8vh;
  padding: 5rem 2.5rem;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.logo {
  max-height: 100%;
  height: 20svh;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 4.5vh;
  width: 100%;
}

.link-icons {
  position: absolute;
  left: 20;
}

.link-content {
  outline: 3px solid var(--white);
  border-radius: 999px;
  width: 100%;
  display: flex;
  gap: 2rem;
  padding: 0.75rem 1.25rem;
  align-items: center;
  position: relative;
  transition: outline 0.2s ease-in;
}

.link-content:hover {
  outline: 3px solid var(--orange);
}

.link-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.link-content .logo-default {
  height: 2rem;
  width: 2rem;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease-in;
}

.link-content .logo-hover {
  height: 2rem;
  width: 2rem;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.link-content:hover .logo-default {
  opacity: 0;
  display: none;
}

.link-content:hover .logo-hover {
  opacity: 1;
  display: block;
}
