* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  font-family: "Montserrat";
  font-weight: bold;
  background-color: #f3dfde;
  color: #fff;
  margin: 0;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 550px;
  text-align: center;
  font-size: 1.5em;
}

p {
  color: #292929;
  line-height: 1.5;
}

.modal {
  display: none;
  position: relative;
  background: #fff;
  padding: 2em 1em 1em;
  border-radius: 10px;
}

.modal img {
  width: 80%;
}

.modal p {
  font-size: 1em;
}
.modal.show-modal {
  display: block;
}
.modal .modal-x {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #292929;
  font-size: 0.5em;
}

.modal .modal-x:hover {
  font-weight: bold;
  font-size: 0.6em;
}

button {
  background-color: #f16059;
  padding: 16px 64px;
  margin-top: 2em;
  outline: 0;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-family: "Montserrat";
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
}

button:hover {
  color: #fff;
}
button:active {
  transform: scale(0.98);
}

button:focus {
  outline: 0;
}
