* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  color: white;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #120022;
}

main {
  text-align: center;
}

h1 {
  font-size: 30px;
  text-align: center;
  margin: 35px 0px 0px 0px;
}

h2 {
  font-size: 22px;
  text-align: center;
  margin: 10px 0px 10px 0px;
}

p {
  font-weight: 400;
}

header {
  display: grid;
  grid-template-columns: 250px 1fr;
  height: 100px;
  background-color: #4c3462;
  padding: 0% 2% 0% 2%;
}

p {
  font-size: 16px;
  line-height: 21px;
}

a {
  text-decoration: none;
  font-size: 12px;
}

.portada {
  background: rgb(75, 52, 98);
  background: linear-gradient(
    0deg,
    rgb(53, 32, 74) 0%,
    rgba(17, 0, 32, 1) 100%
  );
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portada img {
  width: 200px;
}

.tituloPortada {
  color: white;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  margin-top: 10px;
}

.subtituloPortada {
  margin-top: 30px;
}

.btnPortada {
  margin: 20px;
}

.btnPortada p {
  margin: 15px;
}

.btnPort {
  padding: 18px 48px;
  background-color: #bd1600;
  border-radius: 30px;
  font-size: 18px;
  margin-top: 10px;
}

.btnPort:hover {
  background-color: #810f00;
  color: white;
  box-shadow: rgb(0 0 0 / 25%) 0 8px 15px;
  transform: translateY(-2px);
}

@media only screen and (min-width: 100px) and (max-width: 768px) {
  header {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
