body {
  margin-top: 100px;
  background-color: #ffdde1;
  display: flex;
  justify-content: space-evenly;
  height: 100vh;
  margin: 0;
  background: url("img/image.jpg") repeat;
  font-size: 35px;
  color: rgb(255, 0, 174);
  height: 100vh;
  position: fixed;
  width: 100%;
}
.title {
  -webkit-text-stroke: 2px #71004f;
  font-weight: 900;
  font-size: 50px;
}
.subtitle {
  -webkit-text-stroke: 2px #71004f;
  font-size: 30px;
  font-style: oblique;
  font-weight: 800;
}

body .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.img {
  height: calc(100vh - 600px);
}

.text {
  height: 220px;
}

.buttons button {
  background-color: #ff4d79;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 10px;
  margin: 10px;
  font-size: 26px;
  cursor: pointer;
  position: relative;
  font-family: serif; /* Change to a romantic cursive font */
}

.buttons button:hover {
  background-color: #7c1f37;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.hidden-message {
  display: none;
  margin-top: 20px;
}

.button {
  font-family: "Courier New", Courier, monospace;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .subtitle {
    font-size: 40px;
  }

  .title {
    font-size: 60px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .subtitle {
    font-size: 40px;
  }

  .title {
    font-size: 60px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .subtitle {
    font-size: 40px;
  }

  .title {
    font-size: 60px;
  }
}
