@font-face {
  font-family: "astloch-regular";
  src: url("astloch-regular-webfont.woff2") format("woff2"),
    url("astloch-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "macondoswashcaps-regular";
  src: url("macondoswashcaps-regular-webfont.woff2") format("woff2"),
    url("macondoswashcaps-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-image: url(bg/jordan.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: black;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.container {
  margin: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

p,
h5,
summary {
  font-family: helvetica;
  color: black;
  text-align: center;
}

h4,
h3{
  font-family: "Jena Gotisch", sans-serif;
  color: black;
  text-decoration: none;
}

a{
  color: black;
  text-decoration: none;
}

h1 {
  font-family: astloch-regular;
  color: black;
  text-align: center;
  font-size: 70px;
}

h3 {
  font-size: 35px;
}

h4 {
  margin-top: 100px;
  font-size: 40px;
}

h4 a {
  transition: color 0.6s ease-in-out, text-shadow 0.6s ease-in-out;
}

h4 a:hover {
  color: orange;
  text-shadow: red 0 0 10px;
  animation: pulse 2.5s infinite;
}

p {
  font-size: 15px;
}

.next {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 25px;
  margin: 20px;
}

.nav a {
  color: black;
  font-family: helvetica;
  text-decoration: none;
  transition: color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
}

.nav a:hover {
  text-shadow: black 0 0 10px;
}



@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 10px red;
  }
  50% {
    text-shadow: 0 0 20px orange;
  }
}
