@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100..700&display=swap');

/* GENERAL */
* {
    box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: red;
  color: white;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* "NAV" */
.nav {
  margin: 0;
  padding: 0;
  background-color: rgb(235, 2, 2);
  border-bottom:  1.5px solid rgb(190, 2, 2);
  width: 100%;
  height: 60px;
  display: block;
  justify-content: center;
  align-items: center;
}

/* CONTENEDOR GENERAL */
.contenedor {
  background-color: red;
  margin: 15px;
  padding: 10px;
  /*border:  2px solid #F8CBDB;
  border-radius: 2px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HEADER Y MAIN */
header, main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  padding: 15px;
  margin: 0 25px;
  width: 45%;
  height: 65%;
}

main {
  margin-right: 10px;
}

h3, h4 {
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  font-style: normal;
  padding: 5px;
  margin: 5px;
  text-shadow: 2px 2px #8B51F5;
}

p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding: 5px;
  margin: 5px;
}

.texto-completo {
  text-align: center;
  padding: 10px;
  margin: 10px;
  border:  2px solid #FFC957;
  border-radius: 15px;
  line-height: 1.5;
}

a {
  color: #91E4FB;
}

/* BOTON */
button {
  cursor: pointer;
  background-color: #D7EB5A;
  color: #8B51F5;
  border-color: #8B51F5;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  width: 110px;
  height: 30px;
  border-radius: 5px;
  transition-duration: 0.5s;
  justify-content: center;
  align-items: center;
}

button:hover {
  background-color: #7A163C;
  color: #D7EB5A;
  border-color: #D7EB5A;
}