* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100vh;
}

body {
  min-height: 100vh;
  font-family: "KG Payphone", sans-serif;
  position: relative;
  text-shadow: 4px 4px 4px black;
}

section {
  position: absolute;
  top: 25%;
  left: 20%;
  z-index: 3;
  color: white;
  font-weight: 900;
  width: 70%;
}

section h1 {
  font-size: 8rem;
}

section h1 span,
section p span {
  background-color: rgba(117, 115, 115, 0.7);
}

section p {
  font-size: 2.5rem;
}

section a {
  font-size: 2rem;
  background-color: black;
}

section a:hover {
  background-color: white;
  font-style: italic;
  color: black;
  text-decoration: underline;
}

span {
  background-color: black;
  padding: 3px;
}

nav,
footer {
  width: 100%;
  position: fixed;
  z-index: 2;
  background-color: black;
  color: white;
  background: linear-gradient(to right, #800020, #7b0101, #600015);
}

nav {
  top: 0;
  display: flex;
  justify-content: space-between;
  height: 8%;
  border-bottom: solid black 4px;
}

nav * {
  display: block;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-right: 100px;
  font-size: 2.5rem;
}
.nav-link {
  padding: 6px;
}
.nav-link:hover {
  color: black;
  font-style: italic;
  background-color: white;
}

a {
  text-decoration: none;
  color: white;
  padding: 3px;
}

footer {
  bottom: 0;
  height: 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: solid black 4px;
}

/* custom.css */

.carousel-item {
  transition: transform 15s ease-in-out;
}

.carousel-item img {
  filter: grayscale(80%);
  min-height: 100vh;
  min-width: 1480px;
}

/**/
