* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000000;
  color: #fff;
  padding: 20px;
}

div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
}

h1 {
  text-align: center;
  font-family: "Pacifico", cursive;
  margin-bottom: 10px;
  font-size: 4rem;
}

h4 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 5rem;
  border: 2px solid #fff;
  margin-bottom: 10px;
  margin-top: -100px;
}

a {
  text-decoration: underline;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  body {
    padding: 10px;
  }

  div {
    height: auto;
    min-height: 100vh;
    padding: 20px 0;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }

  h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  img {
    width: 15rem;
    height: 15rem;
    border-radius: 3rem;
    margin-top: -50px;
    margin-bottom: 8px;
  }

  a {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
