@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

* {
  font-family: "Montserrat";
}

body {
  margin: 0;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 85%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.titulo {
  width: 50%;
  font-size: 40px;
  font-family: "Montserrat";
  font-weight: 700;
  color: #ffa000;
  margin: 70px 90px;
}

.container-item {
  width: 325px;
  height: 390px;
  text-align: center;
  margin-bottom: 100px;
}

.imagem-item {
  width: 325px;
  height: 322px;
}

.nome-item {
  font-size: 26px;
  font-family: "Montserrat";
  font-weight: 600;
  margin: 12px;
}

.btn {
  width: 185px;
  height: 48px;
  border: none;
  background-color: #176902;
  font-family: "Montserrat";
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
}

.btn:hover {
  box-shadow: 3px 2px 20px 7px #000;
  border-radius: 6px;
}

.container-item a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 400px) {
  .container-logo {
    text-align: center;
    width: 100%;
    height: 88px;
  }

  .container-logo img {
    width: 60%;
  }

  .container-item {
    width: 225px;
    height: 290px;
    text-align: center;
    margin-bottom: 40px;
  }

  .imagem-item {
    width: 225px;
    height: 222px;
  }

  .nome-item {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 600;
    margin: 12px;
  }

  .btn {
    width: 150px;
    height: 38px;
    border: none;
    background-color: #176902;
    font-family: "Montserrat";
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.5s;
  }
}
