body {
    font-family: 'Courier New', Courier, monospace;
    color: #000000;
    margin: 0;
    padding: 0;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.parallax {
    height: 500px;
    padding-block: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax1 {
    background-image: url('/images/Back1.png');
    
}

.parallax2 {
    background-image: url('/images/Back2.png');
    
}

.parallax3 {
    background-image: url('/images/Back3.png');
   
}

.content {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
}

footer {
    font-size: 0.8em;
    margin-top: 20px;
}

a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
}

a:hover {
    text-decoration: none;
}

.contact-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #333333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .parallax {
    
    }

    .content {
        margin: 10px;
        padding: 15px;
        width: 80%;
    }

    .contact-button {
        padding: 8px 15px;
        margin: 5px 3px;
    }
}

@media (max-width: 480px) {
    .parallax {
        padding-block: 200px;
    }

    .content {
        margin: 5px;
        padding: 10px;
        width: 80%;
    }

    .contact-button {
        padding: 5px 10px;
        margin: 3px 2px;
    }
}