body{
   background: rgb(138, 87, 255);
   text-align: center;
   color: rgb(23, 30, 87);
   font-family: Open sans;
   margin: 0;
}

text {
    height: 100%;
    margin-right: 360px;
    margin-left: 360px;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0;
    font-weight: medium;
    font-size: 16px;
    color: rgb(23, 30, 87);
    text-align: center;
    line-height: 2;
 }
 
 img{
    max-width:100%;
 }
 
 h1 {
    font-size: 32px;
    font-weight: bold;
 }
 
 .Container {
    background-color: white; 
    padding-bottom: 32px;
    padding-left: 160px;
    padding-right: 160px;
    padding-top: 0px;
    display: block;
    box-shadow: 0 10px 15px 2px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    position: relative;
 }
 
 button, #submittingMessage {
    color: white;
    background-color: rgb(222, 55, 106);
    font-size: 27px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 24px;
    text-align: center;
    border-radius: 8px;
    font-family: Open Sans;
    font-weight: bold;
    text-decoration-line: none;
    border: none;
    cursor: pointer;
 }

 button:hover{
   background-color: rgb(207, 44, 93);
 }

 #closeButton {
   position: absolute;
   color: rgb(114, 114, 114);
   background-color: #e2e2e2;
   border-radius: 50%;
   text-align: center;
   line-height: 24px;
   width: 40px;
   height: 40px;
   font-size: 16px;
   padding: 0;
   top: 16px;
   right: 16px;
 }

 #closeButton:hover {
   background-color: #d5d5d5;
 }
 
 .footer {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
 }
 
 a {
    color: #fff ;
 }

#email{
   font-size: 16px;
   font-family: open sans;
   padding: 16px 8px;
   width: 100%;
}

.overlay {
   background-color: rgba(14, 12, 49, 0.65);
   display: none;
   z-index: 5;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   position: fixed;
   opacity: 0; /* Initially set opacity to 0 */
   transition: opacity 0.6s ease-in-out; /* Add a transition for opacity */
}

.popup-content {
   z-index: 15;
    background-color: #fff;
    min-width: 375px;
    max-width: 500px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-100%); /* Initially hidden above the viewport */
   transition: transform .5s ease-in;
}
 
 /* Visible state, sliding down from the top */
 .popup-content.visible {
   transform: translate(-50%, 40px);
   transition: transform .5s ease-out;
 }


 @media only screen and (min-width: 0) and (max-width: 1448px) { 
   .text {
     margin-left: 160px;
     margin-right: 160px;
 }
   .Container {
      padding-left: 160px;
     padding-right: 160px;
   }
}


 @media only screen and (min-width: 0) and (max-width: 927px) { 
   .text {
     margin-left: 16px;
     margin-right: 16px;
 }
   .Container {
      padding-left: 16px;
     padding-right: 16px;
   }
}