*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Montserrat, serif;
    color: black;
    line-height: 2;
}
.container{
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}
.la h5{
    font-size: 19px;
    font-weight: 700;
}
.la-1{
    margin-bottom: 37px;
    margin-top: 20px;
}
#contact-inputs{
    width: 83vw;
    height: 34vh;
    margin-top: 20px;
    padding-top: 10px;
    padding-left: 10px;
    font-size: 19px;
    font-weight: 600;
    outline: none;
    border: 1px solid #000;
    font-family: Montserrat, serif;
    border-radius: 3px;
    box-shadow: 0px 0px 2px 0px #000;
}
#contact-inputs::placeholder{
    font-size: 19px;
    font-weight: 600;
}
#contact-data{
    font-size: 16px;
    background: transparent;
    color: #593b8b;
    border-radius: 10px;
    padding: 10px 36px;
    font-family: Montserrat, serif;
    font-weight: 800;
    border: 2px solid #593b8b;
    cursor: pointer;
}
#contact-data:hover{
    transform: translateY(-8px);
    transition: 0.5s all ease;
    border: none;
    background-color: #593b8b;
    color: #fff;
}
.la-2{
    margin-top: 15px;
}
.la-3{
    text-decoration: none;
    font-size: 16px;
    /* text-transform: uppercase; */
    background-color: #593b8b;   
    padding: 14px 46px;
    color: #fff;
    border-radius: 10px;
    /* font-weight: 600; */
}
.la-3:hover{
    color: #fff;
}
.txt{
    font-size: 18px;
    line-height: 2;
    margin-left: 25px;
}
#status{
    border: 2px #000 solid;
    height: 100px;
    border-radius: 5px;
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: mymove 3s forwards ease;
    display: none;
}
.stat{
    padding-top: 28px;
    font-size: 24px;
    position: relative;
}
ion-icon{
    padding-top: 4px;
    font-size: 32px;
    position: absolute;
    font-weight: 900;
    left: 456px;
    right: auto;
}
@keyframes mymove {
    0%   {top: 0px;
    pointer-events: all;}
    25%  {top: 25px;
    pointer-events: all;}
    75%  {top: 25px;
    pointer-events: all;}
    100% {top: 0px;
    pointer-events: none;
    display: none;}
}
