@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-image: url(bgmusic.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;
}


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

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

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

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

h3 {
  font-size: 25px;
    font-family: helvetica; 
color: white;
  text-decoration: none;
    font-weight:normal;
}

h4 {
  margin-top: 80px;
   margin-bottom: 100px;
  font-size: 45px;
    color:orange;
}

h4 a {
  color:orange;
  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;
}

h5{
 font-size: 15px;
  font-weight:normal;
  color:white;
}

p {
  font-size: 15px;
  color:white;
   font-family: helvetica;
  text-align: center;
}



.next {
  margin-top: 45px;
  margin-bottom: 50px;
  text-align: center; 
    transition: color 0.6s ease-in-out, text-shadow 0.6s ease-in-out;
}

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

.nav a {
  color: black;
    background-color: white;
  font-family: astloch-regular; 
  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;
  }
}

