body {
  background: linear-gradient(135deg, #8e44ad, #9b59b6);
  margin: 0;
  padding: 0;
  color: cornsilk;
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  text-shadow: 1px 1px 2px #000000;
}

h2 {
  font-size: 1.2em;
  margin: 20px 0;
  font-family: "Courier New", Courier, monospace;
  text-shadow: 1px 1px 3px #000000;
}

img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
}
img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Mobile */

@media (max-width: 768px) {
  body {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    padding: 10px;
  }

  #container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-size: 2em;
    text-align: center;
  }

  h2 {
    font-size: 1em;
    text-align: center;
  }

  img {
    width: 300px;
    height: 300px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  #container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  h1 {
    font-size: 1.5em;
    text-align: center;
  }

  h2 {
    font-size: 0.9em;
    text-align: center;
  }

  img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
  }
}
