* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #181622;
  font: normal 15pt 'Arial', sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  color: #c39161;
  text-align: center;
  padding: 30px 0 10px;
  font-size: 2em;
  letter-spacing: 1px;
}

section {
  border-radius: 15px;
  padding: 20px;
  max-width: 700px;
  width: 90%;
  margin: 30px auto;
  box-shadow: 0 0 50px 20px #13111b;
  background: #1f1c2c;
  font: normal 14pt Arial, sans-serif;
  transition: all 0.3s ease-in-out;
}

#msg {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 5px #000;
}

img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

#foto {
  text-align: center;
  margin-top: 20px;
}

#conteudo {
  text-align: center;
  margin-top: 25px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
}

#conteudo span {
  display: block;
  margin-bottom: 8px;
}

#temperatura {
  text-align: center;
  margin-top: 15px;
  color: #ffd600;
  font-size: 18px;
}

footer {
  color: #ffd600;
  font-family: 'Arial', sans-serif;
  padding: 10px;
  margin-top: auto;
  background: #13111b;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  body {
    font-size: 12pt;
  }

  header {
    font-size: 1.5em;
  }

  section {
    width: 95%;
    padding: 15px;
    background: none;
  }

  img {
    width: 300px;
    height: 300px;
  }

  #msg {
    font-size: 30px;
  }

  #conteudo {
    font-size: 16px;
  }

  footer {
    text-align: center;
  }
}
