.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  opacity: 0;
  background-color: #141d25;
  padding: 20px;
  padding-bottom: 70px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  height: auto;
  width: 500px;
  color: white;
  border-radius: 30px;
  font-family: Inter, Verdana, Geneva, Tahoma, sans-serif;
}

.popup.open {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup.open .popup-content {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(-50px);
  background-color: #141d25;
}

.close {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  color: black;
  background-color: #ffcb30;
  padding: 10px;
  text-align: center;
  border: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  font-family: Inter, Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  font-size: medium;
  cursor: pointer;
}

.close:hover {
  background-color: #FFBB28;
}

.videoEmbed {
  border-radius: 30px;
}

@media only screen and (max-width: 600px) {
  .popup-content {
    width: 80%;
  }
}