/* HEADER */
header {
  background-image: url("/logo.gif");
  background-size: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: solid 20px;
  border-radius: 80px;
  border-top-color: white;
  border-inline-color: grey;
  border-bottom-color: black;
  padding: 20px;
  margin: 40px auto;
}

/* BODY */
body {
  margin: 0;
  padding: 0;
  background-image: url("fondo-fase00.jpg");
  background-size: 650px;
  background-repeat: repeat;
  background-position: center;
  border: solid;
  border-color: white;
  border-inline-color: grey;
  border-bottom-color: black;
  border-radius: 20px;
  text-align: center;
  font-weight: 100;
  font-family: 'Closer', sans-serif;
  color: white;
}

/* LOGO como clase */
.logo1 {
  border: solid;
  border-width: 30px;
  border-radius: 20px;
}

/* TÍTULO PRINCIPAL */
h1 {
  color: red;
  background-color: black;
  border: solid 18px;
  border-radius: 80px;
  border-top-color: white;
  border-inline-color: grey;
  border-bottom-color: black;
  font-family: 'Closer', sans-serif;
  font-size: 45px;
  font-weight: bold;
  transform: rotate(-8deg);
  padding: 20px;
  margin: 20px auto;
}

/* SUBTÍTULOS */
h2 {
  color: white;
  background-color: gray;
  border: solid 18px;
  border-radius: 80px;
  border-top-color: white;
  border-inline-color: grey;
  border-bottom-color: black;
  border-bottom-width: 20px;
  font-family: 'Closer', sans-serif;
  font-size: 25px;
  transform: rotate(-8deg);
  padding: 15px;
  margin: 20px auto;
}

/* PÁRRAFOS */
p {
    background-image: url("fondo-fase00.jpg");

  border: solid 10px;
  border-radius: 80px;
  border-top-color: green;
  border-inline-color: red;
  border-bottom-color: blue;
  border-bottom-width: 20px;
  font-size: 16px;
  font-family: 'Closer', sans-serif;
  margin-block: 80px;
  padding: 20px;
  color: white;
}

/* BOTÓN */
button {
  border: solid 5px;
  border-radius: 80px;
  border-top-color: white;
  border-inline-color: grey;
  border-bottom-color: black;
  padding: 10px 20px;
  background-color: transparent;
  cursor: pointer;
  color: white;
  font-size: 18px;
}

/* FOOTER */
footer {
  border: solid 4px;
  border-radius: 80px;
  border-top-color: white;
  border-inline-color: grey;
  border-bottom-color: black;
  padding: 20px;
  margin: 40px auto;
  background-color: transparent;
  color: white;
  font-family: 'Closer', sans-serif;
}

/* IMÁGENES */
img {
  border: solid;
  border-radius: 80px;
  max-width: 100%;
  height: auto;
  margin: 20px;
}