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

html {
  height: 100vh;
}

body {
  min-height: 100vh;
  
}

h2{
  font-size: 2rem;
  color:#00535E;
}

.popup-button {
  background-color: #00535E;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 100px;
  margin-top: 25px;
  cursor:pointer;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.432);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
/*
.popup:target {
  opacity: 1;
  visibility: visible;
}
*/

.popup-show {
  opacity: 1;
  visibility: visible;
}


.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  padding: 20px;
  background-color: white;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.popup-text {
  margin-bottom: 4rem;
  font-size: 1.5rem;
  font-weight: 100;
}

@media screen and (max-width: 750px) {
  .popup-content {
    width: 90%;
  }
}