html, body {
  margin: 0px;
  padding: 0px;
}

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
  width: 100%;
  animation: bg 5s infinite;
}

main {
  text-align: center;
  padding-top: 150px;
}

h1, h2, summary {
  font-family: "Oswald", sans-serif;
  text-decoration: underline;
  text-shadow: 5px 5px 10px #ff8825;
  color: black;
}

summary {
  font-size: 1.5em;
}

h1 {
	text-decoration: underline wavy;
  font-size: 40px;
  text-align: center;
}

h2 {
	font-size: 2em;
  margin: 0.5em 0px;
}

h3 {
  font-size: 1.5em;
}

li {
  font-size: 1.15em;
  text-align: center;
}

a, p, figcaption, li, form {
  color: black;
  font-family: "Farro", sans-serif;
  text-shadow: 5px 5px 10px #c76a1d;
}

figcaption {
  transform: translateY(-15px);
}

form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
	color: #47135e;
}

.extra {
  color: #5c2f0d;
  font-weight: bold;
}

hr {
  border: 0;
  height: 1px;
  background-color: #000000;
  width: 80%;
  margin: 1em auto;
}

header {
  width: 40%;
  height: 8%;
  position: fixed;
  top: -45px;
  left: -30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border: 10px solid #FF8927;
	background: rgb(254,191,137);
	background: radial-gradient(rgba(254,191,137,1) 65%, rgba(255,136,37,1) 100%);
  border-radius: 0px 0px 3em 3em;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
}

#box {
  border: 10px solid #FF8927;
	background: rgb(254,191,137);
	background: radial-gradient(rgba(254,191,137,1) 65%, rgba(255,136,37,1) 100%);
  padding: 20px;
  margin: 2em auto;
  border-radius: 3em;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
  text-align: center;
}

form {
  
}

.description {
	font-size: 1.5em;
  width: 85%;
}

.ver, .form-box {
  width: 80%;
}

.link-box {
  width: 80%;
  display: flex;
	flex-direction: column;
  align-items: center;
}

.link-box h2 {
  width: 100%;
}

.link-box p {
  font-size: 1em;
  line-height: 1.4;
}

.caption {
  margin-top: 1em;
  width: 90%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.columns {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  min-width: 250px;
  text-align: center;
  display: inline-block;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 1.25em auto;
  flex-wrap: wrap;
}

.video, .art {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
}

.video img, .art img {
  display: block;
  background-color: white;
  border: 5px solid black;
  box-shadow: -5px 5px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.5em;
}

.video img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.art img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.video p, .art p {
  margin: 0px;
  font-size: 0.9em;
}


.star {
  animation: roe 3s infinite;
}

@keyframes bg {
  0% {background: linear-gradient(0deg, rgba(27,13,33,1) 0%, rgba(83,9,121,1) 100%);}
  50% {background: linear-gradient(0deg, rgba(53,26,65,1) 0%, rgba(99,11,144,1) 100%);}
  100% {background: linear-gradient(0deg, rgba(27,13,33,1) 0%, rgba(83,9,121,1) 100%);}
}

@keyframes roe {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(20deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-20deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 1200px) {
  
  h1 {
    font-size: 30px;
  }

  header {
    padding: 10px 15px;
    border-width: 5px;
  }

  main {
    padding-top: 120px;
  }

  .description {
    width: 95%;
    font-size: 1.1em;
  }

  .ver, .link-box {
    width: 95%;
  }

  .columns {
    flex-direction: column;
  }

  .column {
     width: 100%;
     margin-bottom: 1em;
  }

  .video, .art {
    width: 240px;
  }

  .star img {
    width: 50px;
  }
  
}

@media (max-width: 870px) {
  
   h1 {
    font-size: 30px;
    left: 0px;
    right: 0px;
  }
  
   header {
    width: 100%;
  }

   .video, .art {
    width: 90%;
    max-width: 280px;
  }

   .star img {
    width: 50px;
   }
  
}