#blackHoleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    z-index: 100;
    height: 100%;
    
    pointer-events: none;
    background-color: transparent;
  }

  Style
  #contactBox, #contactTitle, #contactText {
    position: relative;
    z-index: 1;
  }

#contato{
    justify-items: center;
    min-height: 80vh;
    color:white;
    padding-top: 10vh;
    padding-bottom: 3%;
    align-content: center;
    position: relative;
    overflow: hidden;

}
.textsOverEmailArea{
    min-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;

}

p.contactText{
    max-width: 45%;
    justify-items: center;
   
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 100;
    text-align: center;
}

#contactBox {
    position: relative;
    z-index: 2;
    background-color: #0e031ec4;
    padding: 30px 40px;
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    text-align: center;
  }

#contactBox h2 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

#contactBox p {
    margin: 0 0 50px 0;
    font-size: 14px;
    
}

#contactForm {
    width: 100%;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    background-color: #2c035d8f;
    color: white;
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 1em ;
    margin-bottom: 20px;
    padding-left: 10px;
}

#contactForm textarea {
    resize: none;
    height: 170px;
    margin-top: 15px;
    padding: 15px;
}

.contactButtons {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-top: 20px;
  }

.contactButtons button {
    padding: 10px 20px;
    border: none;
    border-radius: .6em;
    cursor: pointer;
    background-color: #2c035d;
    color: rgba(255, 255, 255, 0.473);
    font-weight: bold;
    font-size: 15px;
}
.wppButton{ 
    width: 190px;
    
    padding: 10px 20px;
    border: none;
    border-radius: .6em;
    cursor: pointer;
    background-color: #2c035d;
    color: rgba(255, 255, 255, 0.473);
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .2em;
}
.wppButton i{
    color: white;
    margin-right: 5px;
    font-size: 1.4em;
}
.sendEmail{
    width: 230px;
    
}

.sendEmail i{
    margin-right: 5px;
    color: white;
}


