body {
    background-color: #091d3f; /* Ensure this matches the color around the logo */
    color: #ffffff; /* Change this to white */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.logo {
    width: 600px;
    margin-bottom: 0px;
}

h1 {
    font-size: 2em;
    font-weight: normal;
    margin: 20px 0;
    font-family: 'Georgia';
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    font-style: italic;
    color: #ff69b4; /* Hot pink text color */
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}
