:root {
  --color-accent: #ffe001;
  --color-primary: #0b9346;
  --color-primary-darker: #141a13;
}

@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-v37-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-v37-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-v37-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-v37-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-v37-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Raleway", serif;
  font-size: 62.5%;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

html,
body {
  min-height: 100%;
  background-color: #000000;
}

body.bio {
  min-height: 100dvh;
  background: url("/assets/background_image.webp") center center / cover
    no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

a {
  text-decoration: none;
}

.bred {
  border: 1px solid red;
}

.blue {
  display: none;
  z-index: 10000;
  position: absolute;
  top: -10rem;
  left: 12rem;
}

.profile-logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile {
  max-width: 42rem;
  width: 100%;
}

.logo {
  position: absolute;
  height: 38rem;
  top: 30rem;
}

.container {
  z-index: 10000000000;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
  padding-top: 3.2rem;
}

p.subtitle {
  font-size: 1.4rem;
  max-width: 19rem;
  text-align: center;
  line-height: 140%;
  font-weight: 700;
}

.text-yellow {
  color: var(--color-accent);
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 1.4rem;
  color: white;
  border: 2px solid #ffffff40;
  width: 5.2rem;
  height: 5.2rem;
  transition: all 0.3s;
}

.social li:hover a {
  background-color: white;
  color: var(--color-primary);
}

.card-link {
  background-color: var(--color-primary-darker);
  color: white;
  padding: 2.4rem 3.2rem;
  border: 2px solid #ffffff40;
  border-radius: 1.6rem;

  display: flex;
  align-items: center;
  gap: 3.2rem;

  transition: all 0.3s;
}

.card-link:hover {
  transform: scale(1.02);
}

.container-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.card-link p.title {
  font-weight: 800;
  line-height: 100%;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.card-link span.subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff70;
}

.card-link svg.arrow-right {
  width: 3.6rem;
  height: 3.6rem;
  transition: transform 0.3s;
}

.card-link:hover svg.arrow-right {
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .profile {
    width: 28rem;
  }

  .logo {
    height: 24rem;
    top: 21rem;
  }

  p.subtitle {
    padding-top: 3rem;
  }

  .container {
    gap: 0.6rem;
    padding-top: 0.2rem;
  }

  .card-link {
    transform: scale(0.85);
  }

  .card-link:hover {
    transform: scale(0.9);
  }
}
