body {
    font-family: 'IBM Plex Mono', monospace;
    color: #333;
    background-color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 300;
    color: #000000;
}

.content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: left;
    margin-left: 2rem;
}

.image {
    height: 4.8rem;
    align-self: flex-start;
}

.bold {
    font-weight: 400;
    color: #000759;
}

.line {
    opacity: 0;
    transition: opacity 1s ease;
    margin-bottom: 0.5rem;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-box {
    position: relative;
    /* Set to relative so the button can be positioned absolutely within this */
    width: 750px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    /* To give some spacing */
    background: #fff;
    /* To make it white */
    border-radius: 8px;
    /* To give it rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* To add slight dropshadow */
}

.message-box:hover {
    /* Darker dropshadow on hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    /* underline on hover */
    text-decoration: underline;
    transition: decoration 0.5s ease;


    transition: box-shadow 0.5s ease;
    /* Transition for smooth hover */

}

.message-link {
    font-family: 'Roboto', sans-serif;
    /* Changed the font */
    color: #4e4e4e;
    /* Dark gray color */
    text-decoration: none;
    /* Remove underline */
    cursor: pointer;
    /* Change cursor on hover */
    font-size: 22px;
    font-weight: 300;

}

.send-button {
    position: absolute;
    right: 0.75rem;
    /* Position from the right side */
    padding: 0.25rem .5rem;
    background-color: #000759;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.message-link:hover {
    color: #000864;
    /* Dark blue color on hover */
    box-shadow: 0px 4px 10px rgba(108, 108, 108, 0.2);
    transition: color 2s ease;
    /* Transition for smooth color change */

}

.send-button:hover {
    background-color: #333;
    /* Dark gray color on hover */
    transition: background-color 0.3s ease;
}
