body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
}

.background {
    position: relative;
}

.content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 3rem;
    margin: 0;
}

.contact-link {
    font-size: 1rem;
    margin: 10px 0;
    text-transform: lowercase;
    color: #00008b; 
    text-decoration: none; 
}

.contact-link:hover {
    text-decoration: underline; 
}