@font-face {
  font-family: "Consolas";
  src: url("Consolas.ttf") format("truetype");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Consolas", Helvetica, sans-serif;
}

body {
  background-color: #f4f4f4;
  height: 100vh;
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
}

header {
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
}

header h2 {
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: 200;
}

header h3 {
  margin-bottom: 1rem;
  font-weight: 100;
}

header a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

header a:hover {
  color: #6bb655;
}

header .whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .icon {
  height: 1.25rem;
  width: 1.25rem;
  margin: 0;
  padding: 0;
}

header .phones {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 400;
}

main {
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.img {
  display: flex;
  justify-content: center;
  padding: 1.25rem;
  height: 12.5rem;
}

.title {
  margin: 1rem auto;
  color: #fff;
  background: #365b2b;
  text-decoration: underline;
  padding: 0.75rem 0;
  font-size: 2rem;
}

.card {
  background-color: #365b2b;
  color: #f4f4f4;
  border-radius: 5px;
  box-shadow: 7px 7px 13px rgba(50, 50, 50, 0.22);
  padding: 0.5rem 0.75rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.board {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin: 3.75rem auto;
  flex-wrap: wrap;
  overflow: hidden;
  max-width: 1000px;
}

footer {
  background-color: #365b2b;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  width: 100%;
}

footer h2 {
  text-decoration: underline;
}

footer p {
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  font-weight: 200;
}

footer .content {
  font-style: italic;
}

.whap {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 0.75rem;
  gap: 8px;
  font-size: 0.75rem;
  color: #fff;
}

.whap img {
  height: 1rem;
}

@media (max-width: 965px) {
  header .phones {
    flex-direction: column;
  }
}

@media (max-width: 660px) {
  header .phones {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  header {
    flex-direction: column;
  }

  .title {
    flex-wrap: wrap;
    padding: 1rem;
    font-size: 1.75rem;
  }

  .board {
    margin: 1rem;
    grid-template-columns: 1fr;
  }
}
