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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #2c2b2d;
}

.container p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #fff;
  font-family: monospace;
}

.image-box {
  border: 4px solid #fff;
  border-radius: 10px;
  width: 500px;
  height: 400px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  width: 90%;
  height: 90%;
}

.btn button {
  text-align: center;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-family: monospace;
  background-color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.btn h1 {
  text-align: center;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-family: monospace;
  color: #fff;
  font-weight: bold;
}

.btn button:hover {
  background-color: #2c2b2d;
  border: 1px solid #fff;
  color: #fff;
}
