body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.background {
    position: relative;
    height: 100vh;
    background: url('background-image.jpg') center/cover no-repeat; /* Replace 'background-image.jpg' with your image */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 23, 23, 0.5); /* Opacity overlay color */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF; /* Text color */
}

h1 {
    font-size: 3em;
    margin: 0;
}

.contact-info {
    background-color: #FFFFFF; /* White box background */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle lift */
}

.contact-info p {
    margin: 0;
    color: #181717; /* Text color for contact information */
}
