* {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: rgb(240, 240, 240);
}
a {
  text-decoration: black;
  color: #191970;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  padding-top: 20px;
}
body h1 {
  font-size: 30px;
  font-weight: 700;
  color: #52595e;
}

h2 {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 30px;
  color: #191970;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
  flex: 1;
}

.container h4 {
  margin-bottom: 20px;
}

.contatos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.local {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contatos ul {
  list-style: none;
}

.contatos li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.contatos li img {
  margin-right: 10px;
}

.local p {
  color: #31536c;
}

@media only screen and (max-width: 600px) {
  body {
    text-align: center;
  }
  .container {
    display: flex;
    flex-direction: column;
  }

  iframe {
    width: 90%;
  }
}
