  @import "imports/links.css";
@import "imports/variables.css";

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #0C1B20;
  color: #fff;
  margin: 30px;
  display: flexbox;
  grid-template-rows: auto 1fr auto;
}

h1 {
  color: #fff;
  font-family: "Anta", sans-serif;
  font-weight: 50px;
  font-size: 3em;
  text-transform: uppercase;
  font-style: normal;
  position: sticky;
}

h3 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1em;
  font-style: normal;
  text-align: center;
}

p {
  font-family: "Inter", sans-serif;
}

.logo {
  position: sticky;
  padding: 30px;
}

nav {
  margin: 40px;
  font-family: var(--text-heading), sans-serif;
  color: #fff;
  text-decoration: none;
  display: none;
  position: absolute;
  z-index: 1000;
  top: 45px;
}

nav ul {
  padding: 0px;
  text-align: center;
}

nav li {
  display: inline-block;
  padding: 20px;
}

nav a {
  font-family: var(--text-heading), sans-serif;
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

i {
  padding: 10px;
  margin: 5px;
}

#hamburger-menu {
    display: none;
}

#hamburger-menu:checked ~ nav {
    display: block;
    white-space: nowrap;
}

.form__input {
  display: block;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 80px;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  transition: transform 0.2s;
}

footer a:hover {
  transform: scale(1.2);
}

.fa-brands {
  display: flex;
  justify-content: center;
}

.cart-icon,
.fa-brands {
  font-family: var(--text-heading), sans-serif;
  color: #fff;
  font-weight: lighter;
  text-decoration: none;
}