@import url(https://fonts.googleapis.com/css2?family=Quicksand&display=swap);
@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@700&display=swap);

/* Common Styles */
html {
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Quicksand";
}

body {
  min-height: 100%;
  background-color: rgba(58, 58, 58, 1);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.container p {
  background-color: rgba(255, 255, 255, 1);
  align-self: center;
  padding: 1rem;
}

.wrapper {
  min-height: 100vh;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-image: url("../imgs/background.jpg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.greeting {
  font-family: "IBM Plex Sans", sans-serif;
}

h1.greeting {
  color: rgba(255, 255, 255, 1);
  font-size: 6rem;
  line-height: 100%;
}

h2.greeting {
  margin-top: 0;
  font-size: 2rem;
  color: rgba(255, 0, 0, 1);
  text-align: end;
  line-height: 100%;
}

.user__status {
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 5.5rem;
  text-align: center;
}

.user__status a {
  font-size: 0.8rem;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: transparent;
  z-index: 1;
}

.navigation__list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navigation_item {
  flex: 1;
  text-align: center;
}

.navigation_link {
  color: #fff;
  font: 500 1.75em/1 "IBM Plex Mono", monospace;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(to top, #7f7f7f 99%, transparent 1%) 50% 100%/0
    0.1em no-repeat;
  transition: background-size 0.2s ease-in-out, color 0.2s ease-in-out;
}

.navigation_link:active:not(.current_page),
.navigation_link:focus:not(.current_page),
.navigation_link:hover:not(.current_page) {
  background-size: 100% 0.1em;
  color: #7f7f7f;
}

.navigation_item img {
  max-width: 50%;
}

.navScrolled {
  background-color: rgba(58, 58, 58, 1);
}

/* #logo:hover {
  content: src= "/imgs/branding/griffin-gray.png";
} */

@keyframes animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gdpr {
  font-size: 0.7rem;
}
::placeholder {
  color: grey;
  font-size: 0.8rem;
  text-align: center;
}

/* footer */
.footer {
  background-color: rgb(29, 29, 29, 0.3);
  margin-top: 2rem;
  color: rgba(255, 255, 255, 1);
  display: flex;
  font-family: Quicksand, sans-serif;
}
.footer_item {
  flex: 0 0 40%;
  padding: 0 1rem;
  margin: 1.25rem 0;
}
.footer_item:nth-child(1) {
  padding: 1rem;
  margin: 1.25rem 0;
  flex: 0 0 20%;
}
.footer_item-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer_item-img img {
  position: absolute;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer_item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 1);
}
.footer_list {
  display: flex;
  flex-direction: column;
}
.footer_middle {
  line-height: 2rem;
}
.footer_right {
  line-height: 1.5rem;
}

.subscribe {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.error {
  border: 21px solid red;
}
