* {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

header {
  max-height: 50dvh;
  display: flex;
  column-gap: 30px;
  align-items: center;
}

header section {
  max-width: 50%;
  padding: 20px 50px;
}

header .tirinha img {
  max-width: 100%;
  border-radius: 20px;
}

header .titulo img {
  width: 80%;
}

header p {
  color: grey;
}

header .botoes {
  display: flex;
  justify-content: space-evenly;
  padding: 20px;
  gap: 10px;
}

header .botoes a {
  color: white;
  text-align: center;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid black;
  box-shadow: 2px 2px 2px black;
  background: #020024;
  background: linear-gradient(
    182deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
}
header .botoes a:hover {
  background-color: blueviolet;
  box-shadow: 4px 4px 2px black;
}

@media (max-width: 1000px) {
  header {
    flex-direction: column;
    max-height: unset;
    padding: 5px;
  }

  header section {
    max-width: 100%;
  }

  header .titulo img {
    width: 100%;
  }
}

main {
  padding: 20px 50px;
  background: white url(images/bg.png) repeat;
}

main h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

main article {
  margin: 10px;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 10px;
  width: 300px;
  box-shadow: 2px 2px 2px black;
  background-color: white;
  text-align: center;
}

main article:hover {
  box-shadow: 4px 4px 2px black;
  background-color: antiquewhite;
}

main h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

main article p {
  padding: 10px;
}

main article a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #369;
  font-weight: 600;
}

main article a:hover {
  color: red;
}

main article img {
  max-width: 100%;
  max-height: 200px;
}

main article iframe {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

main section {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  padding: 20px 50px;
  display: flex;
  background-color: black;
  color: white;
  justify-content: center;
}

footer .redes {
  display: flex;
  gap: 20px;
}

footer .redes img {
  color: white;
  width: 36px;
}
