* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  width: 100%;
  background-color: rgb(37, 45, 53);
  font-family: Arial, sans-serif;
  color: white;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}
h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.image {
  width: 100%;
  max-width: 1200px;
}
.image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
