@charset "utf-8";

body {
  background: url('https://cdn.pixabay.com/photo/2014/05/21/22/28/old-newspaper-350376_960_720.jpg') no-repeat;
  background-size: cover;
}

.corpo {
  background-color: rgba(255 , 255 , 255 , 0.65);
  border-radius: 20px;
  margin: auto;
  padding: 0;
  width: 70%;
}

.newspaper {
  background-color: antiquewhite;
  font-family: Times New Roman, Times, serif;
  font-weight: 700;
}

.magazine1 {
  background-color: teal;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.magazine2 {
  background-image: url('images/pink-pattern.png');
  color: fuchsia;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 900;
}

.medium {
  font-size: 20px;
  padding: 8px;
}

.big {
  font-size: 30px;
  padding: 10px;
}

.reallybig {
  font-size: 40px;
  padding: 15px;
}

.rotateleft {
  transform: rotate(-5deg);
}

.rotateright {
  transform: rotate(5deg);
}

.skewleft {
  transform: skewX(10deg);
}

.skewright {
  transform: skewX(-10deg);
}

button {
  background-color: darkslategray;
  border-radius: 5px;
  border-top-color: rgb(34 , 149 , 151);
  border-width: 5px;
  color: rgb(206 , 202 , 202);
  font-size: 15pt;
  height: 40px;
  margin: auto;
  width: 200px;
}

.contador {
  background-color: hotpink;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  font-size: 20pt;
  font-style: oblique;
  text-align: center;
}

.deck , .contador {
  margin: auto;
  width: 40%;
}

.contador:hover {
  background-color: aquamarine;
}

button , input , .deck {
  display: block;
}

input {
  border-radius: 5px;
  font-size: 15pt;
  height: 30px;
  text-indent: 10px;
  width: 60%;
}

input , button {
  margin: 50px auto 5px;
}

input , button , span {
  font-family: Kalam, cursive;
}

button:hover {
  background-color: rgb(58 , 110 , 110);
  border-top-color: rgb(0 , 251 , 255);
}

span {
  border: 1px solid black;
  box-shadow: 8px 8px 15px black;
  cursor: pointer;
  display: inline-block;
  margin: 40px 4px 45px;
  text-shadow: 2px 2px 12px white;
  transition: background-color 1s;
}
