@import url(./fonts.css);

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #fefefe;
  --black: #232325;
  --blue: #333890;
}

body {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--blue);
  /* background-image: url(/images/Background.webp); */
}

a {
  text-decoration: none;
}

h1 {
  font-size: clamp(5em, 10vw, 12em);
  color: var(--blue);
  font-weight: 500;
  /* line-height: clamp(7rem, 20vh, 12rem); */
}

p {
  font-size: clamp(1.2rem, 1.75vw, 2rem);
  color: var(--blue);
  font-weight: 600;
}

/* 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: 5vh;
  padding: 2.5rem;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.logo {
  height: 100%;
  max-height: 30vh;
  background-color: var(--white);
  border-radius: 500px;
  padding: 0.5rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  width: 100%;
}

.link-icons {
  position: absolute;
  /* left: 20px; */
}

.link-content {
  outline: 3px solid var(--blue);
  border-radius: 999px;
  width: 100%;
  display: flex;
  gap: 2rem;
  padding: 1rem 1.5rem;
  align-items: center;
  position: relative;
  background-color: var(--white);
}

.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;
}
