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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 3rem;
}
.container h1 {
  font-family: "Rubik Iso", cursive;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.container img {
  --img-size: 300px;
  object-fit: cover;
  height: var(--img-size);
  width: var(--img-size);
  border-radius: 50px;
}
@media screen and (min-width: 700px) {
  .container img {
    --img-size: 500px;
  }
}/*# sourceMappingURL=style.css.map */