body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #020F15; /* Dark background */
    color: #ccc;
    font-family: Arial, sans-serif;
}

a {
    color: #b5952c;
    text-decoration: none;
    background-color: #000;
    padding: 6px 11px;
    border: 1px solid #111;
    border-radius: 3px;
}

.email {
    margin-top: 4px;
}

.container {
    text-align: center;
}

.logo {
    max-width: 500px; /* Adjust as needed */
    margin-bottom: -32px;
}


.contact-button {
    color: #d4af37; /* Gold color */
    background-color: #000000; /* Dark text for contrast */
    border: 1px solid #1a1a1a;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    /* color: #fff; */
    
}

.contact-button:hover {
    background-color: #b7950b; /* Darker shade of gold for hover effect */
}

