.header{
    padding: 0;
}
.header-image{
    height: 100vh;
    width: 100%;
}
.text-image{
    height: 220px;
    width: auto;
    float: right;
}
.text1, .text2{
    min-height: 200px;
    max-height: fit-content;
}
.text3{
    min-height: 200px;
}
.text1{
    font-size: 22px;
}
.text1 p {
    margin-bottom: 0px;
}
.textpt3{
    font-weight: bold;
    font-size: 28px;
}
.submitbutton{
    width: 30%;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 3em;
    font-family: inherit;
    font-size: 16px;
    border-radius: 30px;
    padding: 10px 20px;
    border: black 1px;
}

/** toast **/
.iziToast-capsule{
    width: 200px;
    text-align:center;
    position: fixed;
    background-color: white;
    border: black 1px solid;
    top: 25px;
    right: 25px;
    padding: 10px;
    animation-name: message;
    animation-duration: 7s;
}

.iziToast-capsule button{
    display: none;
}

@keyframes message {
    0% { margin-right: -400px; }
    30% { margin-right: 20px; }
    85% { margin-right: 20px; }
    100% { margin-right: -400px;}
}
