.contact_intro {
    white-space: pre;
    margin-bottom: 10px;
    padding-top: 10px;
    line-height: 0.9;
    text-align: center;
    position: relative;
}

@media (min-width: 450px){
    .contact_body {
        margin-left: auto;
        margin-right: auto;
        max-width: 450px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 449px){
    .contact_body {
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
        display: flex;
        flex-direction: column;
    }
}

.typewriter {
    display: inline-block;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #207733; /* The typewriter cursor */
    white-space: nowrap; /* Prevents text from wrapping */
    position: absolute; /* Removes it from the document flow */
    left: 50%; /* Center the effect */
    transform: translateX(-50%); /* Adjust position for centering */
    animation: typing 1.5s steps(40, end), blink-caret .75s step-end infinite, hide-caret 0s 6s forwards;
    width: 11ch; /* Set a fixed width for the animation duration */
    
}

@keyframes typing {
    from { width: 0; }
    to { width: 11ch; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #207733; }
}

@keyframes hide-caret {
    0% { border-color: #207733; }
    100% { border-color: transparent; }
}



form_name,
form_phone,
form_email,
form_message {
    font-weight: bold;
    margin-bottom: 5px;
    width: 100%;
}

.form-control {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
    cursor: auto;
}

.form-control:focus {
    border-color: #207733;
    outline: none;
}

.button {
    background-color: #207733;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.5s;
    font-weight: bold;
}

.button:hover {
    background-color: #329948;
}

.Sneaky a {
    color: #fff;
    text-decoration: none;
}

.Sneaky a:hover {
    color: #fff;
    text-decoration: none;
    cursor: text;
}