:root {
  --accent-color: hsl(19, 48%, 18%);
  --primary-text-color: hsl(19, 48%, 18%);
  --secondary-text-color: hsl(19, 48%, 30%);
  --logo-border-color: transparent;
  --link-border-color: hsl(19, 48%, 30%);
  --link-bg: #fff;
}

/* Load Lato font styles */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400; /* You can specify different weights if needed */
  src: url("https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wXiWtFCc.woff2")
    format("woff2"); /* Update the URL to match the specific font file */
}

/* Apply the font to specific elements */
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("./images/bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2rem;
  max-width: 500px;
  width: calc(100% - 4rem);
  height: 100vh;
}

.header {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.logo {
  width: 100px;
  height: 100px;
  border: 1px solid var(--logo-border-color);
  border-radius: 999px;
  transition: all 0.1s;
}

.logo:hover {
  transform: scale(1.1);
}

.info {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 0.75rem 0;
}

.info__name {
  padding: 0;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-text-color);
}

.info__description {
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  color: var(--secondary-text-color);
}

.nav {
  width: 100%;
}

.link-list {
  width: 100%;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.link-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--link-border-color);
  border-radius: 999px;
  box-shadow: 8px 8px 0px 1px var(--accent-color);
  -webkit-box-shadow: 8px 8px 0px 1px var(--accent-color);
  -moz-box-shadow: 8px 8px 0px 1px var(--accent-color);
  margin: 0.75rem 0;
  width: calc(100%);
  transition: all 0.1s;
  background: var(--link-bg);
}

@media screen and (max-width: 425px) {
  .link-item {
    width: 300px;
  }
}

.link-item:hover {
  transform: scale(1.1);
}

.link {
  /* Reset */
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 60px;
}

.link__icon {
  position: absolute;
  left: 1rem;
  top: auto;
  bottom: auto;
}

.link__icon--image {
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.link__icon--font {
  transform: translateX(50%);
  font-size: 1.5rem;
  color: var(--accent-color);
}

.link__text {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

.footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.footer-list {
  width: 100%;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}

.footer-item {
  margin: 0.5rem 0.5rem 0 0.5rem;
  transition: all 0.1s;
}

.footer-item:hover {
  transform: scale(1.1);
}

.footer-link {
  text-decoration: none;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.footer-image {
  width: 100%;
  height: 100%;
}

.footer-image--svg {
  filter: invert(11%) sepia(66%) saturate(792%) hue-rotate(339deg)
    brightness(97%) contrast(87%);
}

.footer-icon {
  font-size: 2.75rem;
  color: var(--accent-color);
}
