/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baumans&display=swap");
/* Variables */
* {
  box-sizing: border-box;
}

html {
  height: 100vh;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background-color: #1d1d1d;
  height: 100vh;
  color: #fff;
}

.backdrop {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  font-size: 15rem;
  font-weight: 800;
  font-family: "Baumans", sans-serif;
  color: #fff;
}

.fade-out {
  opacity: 0;
  visibility: hidden;
}

.backdrop-text {
  animation: wiggle 1s infinite;
}

.backdrop-message {
  font-size: 1rem;
  font-weight: 200;
  font-family: "Nunito Sans", sans-serif;
}

.header-nav {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #02ad91;
  z-index: 1;
}
.header-nav a {
  display: block;
  text-align: center;
  font-size: 10rem;
  font-stretch: wider;
  text-decoration: none;
  font-family: "Baumans", sans-serif;
  color: #fff;
  font-weight: 800;
  animation: change-color 10s infinite alternate;
}
.header-nav a:hover {
  color: #1d1d1d;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 88vh;
  padding-top: 10.9rem;
}
.main-container h1 {
  text-align: center;
}
.main-container p {
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 1rem;
  margin-right: 2rem;
  margin-left: 2rem;
}

.link-container-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  width: 100%;
}

.link-item {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 300;
  width: 50%;
  margin: 1rem auto;
  border: 1px solid #fff;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}
.link-item a {
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
}
.link-item a:hover {
  color: #02ad91;
}
.link-item:hover {
  background-color: #fff;
  border: 1px solid #02ad91;
}
.link-item img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5em;
  vertical-align: middle;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 100%;
  padding: 1rem;
}
.footer-container p {
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
}

.sammy-logo {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5em;
  vertical-align: middle;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}
@keyframes change-color {
  0% {
    color: #fff;
  }
  25% {
    color: #1d1d1d;
  }
  50% {
    color: #fff;
  }
  75% {
    color: #1d1d1d;
  }
  100% {
    color: #fff;
  }
}

/*# sourceMappingURL=alejandrina.css.map */
