body {
    font-family: "Poppins";
}

.container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* .no-scroll {
  overflow: hidden;
} */

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 150px;
  padding: 10px 50px 70px 50px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
}

.btn {
    background-color: white;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 270px;
}

.btn-open {
    background-color: #008080;
    color: white;
    padding: 10px 35px;
    font-size: 16px;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;  
} 

.btn-open:hover {
    background-color: #ec7474;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.box {
    padding-top: 20px;
    background-color: white;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    width: 400px;
    height: 200px;
    box-shadow: 0 2px 2px rgba(63, 63, 63, 0.034),
    0 6.7px 5.3px rgba(49, 49, 49, 0.021), 
    0 2.5px 2px rgba(85, 85, 85, 0.06),
    0 2.3px 7px rgba(0, 0, 0, 0.072), 
    0 4.8px 3px rgba(41, 41, 41, 0.086),
    0 10px 80px rgba(44, 44, 44, 0.12);
    transition: box-shadow 0.3s ease;
}

.box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

h1 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.wire {
    font-size: 26px;
}

.text {
    font-size: 14px;
}

.butt {
    background-color: #008080;
    border: none;
    padding: 10px 7px;
    margin-top: -10px;
    color: white;
    transition: border-radius 0.3s ease, background-color 0.3s ease;
}

.butt:hover {
    border-radius: 50%;
    background-color: #ec7474;
}