@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%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #7b5030;
  }

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

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

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

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

h1 {
  font-family: astloch-regular;
  color: black;
  font-size: 70px;
    margin: 6px;
}

h3 {
  font-family: helvetica;
  color: black;
  text-decoration: none;
  font-weight: normal;
}

h5 {
  font-weight: normal;
}

p a{
color:white;
}

p a:hover{
color:white;
    text-decoration-line: overline underline;
}

.next {
  transition: color 0.6s ease-in-out, text-shadow 0.6s ease-in-out;
}

.next a:hover {
  animation: pulse 2.5s infinite;
}

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

.nav a {
  color: black;
  font-family: astloch-regular;
  text-decoration: none;
}

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