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

body {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 1)),
              url('https://riak.ai/email_assets2/Parchment5.png') center / cover no-repeat;
    background-color: #f0f0f0; /* Light gray background */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.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 */
}

.btn-send2 {
    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-send2:hover {
    background-color: var(--riakroyal); /* Dark red hover */
}
.navigation-bar {
  background-color: #ffffff;
  align-content: center;

}

.navigation-link {
  color: #676770;
  font-size: 18px;
  align-content: center;
  transition: all .3s ease-in-out;
