* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0b1220;
  color: #eaf2ff;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1e40af;
  font-family: "Poppins", sans-serif;

  nav {
    margin-bottom: 10px;
  }

  ul {
    display: flex;
    gap: 15px;
  }

  li {
    list-style: none;
    font-size: 20px;
    text-align: center;
  }

  a {
    text-decoration: none;
    color: #fbd513;
    font-weight: 500;
  }
  a:hover {
    text-decoration: none;
    color: #fbd513;
    font-weight: 550;
  }

  img {
    width: 200px;
  }
}

div {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding: 10px;
}

.titulo {
  font-size: 30px;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 15px;

  .div-imagens {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    img {
      width: 300px;
      border-radius: 14px;
      border: solid 4px #fbd513;
    }
  }

  .titulo {
    color: white;
  }
}

@media all and (max-width: 500px) {
  nav {
    ul {
      display: flex;
      flex-direction: column;
    }
  }

  .div-imagens {
    display: flex;
    flex-direction: column;
  }
}

footer {
  /* background-color: #cb9e25; */
  background-color: #1e40af;

  div {
    display: flex;
    flex-direction: column;
    align-items: center;

    span {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 600;
      padding: 10px;
    }
  }

  img {
    width: 200px;
  }
}
