body {
  border: solid 1px;
  margin: 0;
  font-family: sans-serif;
  background-color: white;
  user-select: none;
}
.bg-image {
  width: 100%;
  height: 100vh;
  background-image: url("https://plus.unsplash.com/premium_photo-1710849581742-f2151607c745?q=80&w=415&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: 100%;
  background-position: center;
  background-attachment: fixed;
  /* background-repeat: no-repeat; */
}
.container {
  padding: 100px;
}
h1 {
  font-size: 50px;
  color: gray;
}
@media (max-width: 500px) {
  .container {
    padding: 10px;
  }
}
