@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  background-color: #1d232a;
  color: #ecf9ff;

  background: radial-gradient(circle at center, #1a1546, #040411 40%);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
img {
  width: 25%;
  height: auto;
}
@media (max-width: 768px) {
  img {
    width: 100%;
  }
}
