@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,900&display=swap");

body {
  background-color: black;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

header {
  text-align: center;
  color: white;
}

section {
  background: white;
  border-radius: 8px;
  padding: 15px;
  width: 500px;
  margin: 0 auto;
  box-shadow: 5px 5px 10px #00000086;
}

#msg {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}

footer {
  color: white;
  text-align: center;
  margin-top: 50px;
}

#imagem {
  display: flex;
  padding: 50px;
  width: 250px;
  height: 250px;
  background-size: cover;
  margin: 0 auto;

  border-radius: 50%;
}

@media (max-width: 550px) {
  section {
    width: 90%;
  }

  #msg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #imagem {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
    width: 250px;
    height: 250px;
    background-size: cover;
  }
}

@media (max-width: 330px) {
  #imagem {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
    width: 200px;
    height: 200px;
    background-size: cover;
  }
}
