/* @import url(../fonts/fonts.css); */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #1c2852;
  --yellow: #f6a121;
  --beige: #fef6e9;
  --borderGold: #a67e25;
  --borderLightGold: #f9efa2;
  --formText: #8a8eaa;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-image: url(/images/Background.webp);
}

a {
  text-decoration: none;
}

h1 {
  font-size: clamp(5em, 10vw, 12em);
  color: var(--blue);
  font-weight: 500;
  font-family: BIZANTHEUM;
  /* line-height: clamp(7rem, 20vh, 12rem); */
}

p {
  font-size: clamp(1.2rem, 1.75vw, 2rem);
  color: var(--white);
}

/* img {
  max-width: 100%;
} */

.wrapper {
  max-width: 500px;
  width: 100vw;
  height: 100svh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 5vh;
  padding: 2.5rem;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.logo {
  width: 150%;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 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: 1rem 1.5rem;
  align-items: center;
  position: relative;
}

.link-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.link-content .logo-default {
  height: 2rem;
  width: 2rem;
  display: block;
}

.link-content .logo-hover {
  height: 2rem;
  width: 2rem;
  display: none;
}

.link-content:hover .logo-default {
  display: none;
}

.link-content:hover .logo-hover {
  display: block;
}
