/*
Name: Tate Brasel
Date: 04.14.18
Section: CSE 154 AD

This poetry.css file describes the content styling of the Eerie Poem Generator page.
*/

@import url('https://fonts.googleapis.com/css?family=Gaegu');

body {
  background-image: url("https://cdn.pixabay.com/photo/2017/08/10/01/06/trees-2616706_960_720.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: center;
  margin: auto;
}

h1, h2, p, label, input, button {
  font-family: 'Gaegu', cursive;
}

h1, h2, p, label {
  color: white;
}

h1 , h2 {
  text-align: center;
}

h1 {
  font-size: 5vw;
  text-shadow: 0px 0px 12px lightgray;
  margin: 0px 10px;
}

h2 {
  font-size: 3.5vw;
  text-shadow: 0px 0px 8px black;
  text-transform: capitalize;
  font-style: italic;
}

header {
  width: 90%;
  background-color: rgba(100, 100, 100, 0.6);
  box-shadow: 0px 0px 30px 10px black;
  margin: 20px 0px;
}

p, label {
  font-size: 2.3vw;
  color: white;
}

p {
  text-shadow: 0px 0px 4px black;
}

hr {
  width: 90%;
  color: white;
  box-shadow: 0px 0px 20px 2px black;
  margin: 50px 0px;
}

label {
  font-size: 2.8vw;
  text-shadow: 0px 0px 8px lightgray;
  margin: 5px 0px;
}

input {
  border: 3px inset rgb(200, 200, 200);
}

button {
  border: 3px outset rgb(200, 200, 200);
}

input, button {
  font-size: 2.8vw;
  text-align: center;
  text-shadow: 0px 0px 2px gray;
  box-shadow: 0px 0px 10px 1px black;
  margin: 5px 15px;
}

iframe {
  box-shadow: 0px 0px 10px 1px black;
  margin: 20px 10px;
}

span {
  font-size: 2.3vw;
  text-shadow: 0px 0px 8px white;
}

#poem {
  text-align: left;
}

#poemSpace {
  width: 60%;
}

#options {
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgba(100, 100, 100, 0.6);
  flex-wrap: wrap;
  box-shadow: 0px 0px 40px 10px black;
  margin: 20px 0px;
  padding: 10px;
}

#about {
  width: 90%;
}

#about p {
  font-size: 2vw;
}
