:root {
    --riakred: #e05234;
    --white-smoke-3: #edeff2;
    --black: #2e486d;
    --riakroyal: #3f3157;
    --white-smoke-2: #f0f0f0;
}

body {
    margin: 0;
    font-family: 'Mr Eaves Mod OT', Arial, sans-serif; /* Use Mr Eaves Regular as the main font */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 1)),
              url('https://riak.ai/images/WhiteWaves-p-1080.jpg') center / cover no-repeat;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: #ffffff; /* White card background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
    padding: 20px;
}

.card-title {
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.btn-send {
    background-color: var(--riakred); /* Red button stuff */
    color: #ffffff; /* White text for button */
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.btn-send:hover {
    background-color: var(--riakroyal); /* Dark red hover */
}

.navigation-bar {
    background-color: #ffffff;
    overflow: hidden;
}

.navigation-link {
    float: left;
    display: block;
    color: #676770;
    font-size: 18px;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.navigation-link:hover {
    background-color: #ddd;
    color: black;
}

.logo-container {
    float: left;
    padding: 10px;
}

.logo {
    max-width: 100px; /* Adjust the max-width as needed */
    height: auto;
}

.left-links {
    float: left;
}

.right-links {
    float: right;
    font-family: 'Mr Eaves Mod OT', Arial, sans-serif; /* Use Mr Eaves Regular as the main font */

}
