/* Importação da fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f6f8;
  font-family: 'Poppins', sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
}

.logo {
  width: 300px;
  margin-bottom: 44px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #2c3e50;
}

p {
  font-size: 1em;
  margin-bottom: 8px;
}

.contato {
  margin-top: 20px;
  font-weight: 600;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .logo {
    width: 90px;
  }
}
