* {
  box-sizing: border-box;
}

body {
  background-size: contain;
  height: 100%;
}
@media all and (max-width: 1100px) {
  body {
    background: white;
  }
}

.container {
  height: 100%;
}

header {
  float: right;
  padding-right: 1em;
}
@media all and (max-width: 1100px) {
  header {
    padding: 0;
    text-align: center;
    float: none;
  }
}

h1 {
  color: #DA4849;
  font-size: 3.5em;
  font-weight: 300;
    font-family: "Oswald", sans-serif;
    text-align: center;
    margin-top: 30px;
}
@media all and (max-width: 1100px) {
  h1 {
    padding: 0;
    text-align: center;
  }
}
h1 span {
  display: inline-block;
  text-shadow: -1px 1px 1px black, -2px 1px 0 black;
  color: black;
  -webkit-animation: rotation 5s infinite linear;
          animation: rotation 5s infinite linear;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
h2 a {
  color: black;
}

.settings {
  padding-top: 1em;
  font-family: "Oswald", sans-serif;
  color: #413d3d;
  text-align: center;
  clear: both;
  margin-bottom: 1em;
}

label {
  font-size: 1.5em;
  display: block;
  line-height: 2.5;
}
@media all and (max-width: 500px) {
  label {
    font-size: 1em;
  }
}

label span {
  color: #DA4849;
  font-size: 0.8em;
}

input {
  font-size: 1em;
  max-width: 2.5em;
  border: 3px inset #63759B;
}
@media all and (max-width: 500px) {
  input {
    font-size: 0.9em;
  }
}

input[type=checkbox] {
  margin-left: 0.5em;
}

button {
  color: white;
  font-size: 1.3em;
  background-color: #3b465d;
  border: 1px #63759B outset;
  padding: 1em;
  border-radius: 15px;
  box-shadow: 1px 1px 1px gainsboro;
  font-family: "Oswald", sans-serif;
  text-shadow: 1px 1px 1px black;
}
button:hover {
  background-color: #63759B;
}
@media all and (max-width: 500px) {
  button {
    font-size: 1em;
    padding: 0.5em;
  }
}

.paragraphs {
  display: none;
  padding: 1em 0 2em 0;
  width: 40%;
  margin-left: 30%;
  font-family: "Oswald", sans-serif;
  color: #413d3d;
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1.5;
}
@media all and (max-width: 1100px) {
  .paragraphs {
    width: 60%;
    margin: 0 auto;
    background: url(https://res.cloudinary.com/djtycby9b/image/upload/v1632774186/redblue-lighter.svg) no-repeat center center;
    background-size: contain;
  }
}
@media all and (max-width: 600px) {
  .paragraphs {
    font-size: 1.2em;
    width: 90%;
    margin: 0 auto;
  }
}

.generated {
  margin-bottom: 0.5em;
}

.article{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2% 20% ;
}