* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  cursor: pointer;
}
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(172, 170, 170);
  position: relative;
  z-index: 1;
}
.subscribe {
  padding: 40px;
}
.pop-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  width: 300px;
  height: 200px;
  position: absolute;
  z-index: 1000000;
  border-radius: 16px;
}
.pop-up-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: #ffea9f;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.thanks-text {
  text-align: center;
  font-weight: 800;
}
.subscribe-text {
  font-size: 17px;
  display: block;
}
.x-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
  width: 24px;
  height: 24px;
  border-radius: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.pop-up-button {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  background-color: #ffea9f;
  border-radius: 16px;
}
.overlay {
  display: none;
  width: 500px;
  height: 500px;
  background-color: rgba(165, 42, 42, 0.633);
  z-index: 900000;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
