main {
    background-image: linear-gradient(to bottom, rgba(255,192,106,255), rgba(114,77,65,255)), 
    url('../images/tropical-resort.jpg'); /* Add your background here */
    background-size: cover;
    background-position: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    width: 950px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #2b3a42;
}

.contact-item p {
    font-size: 2.1em;
    color: #333;
}

.contact-item a {
    color: #ff7f50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d76329;
}

.papers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.pdfIcon {
    width: 50px;
}

.map-container iframe {
    width: 950px;
    height: 400px;
    border-radius: 10px;
}
h2{
    color: white;
}
h3{
    color: white;
}
p{
    color: white;
}
.address{
    display: flex;
    flex-direction: column;
    width: 950px;
}
.address p{
    font-size: 1.2rem;
    margin: 0;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    main{
        padding-top: 40px;
    }
    .contact-card {
        width: 80%;
        padding: 15px;
    }
    
    .contact-item p {
        font-size: 1.8em;
    }

    .papers {
        flex-direction: column;
        align-items: center;
    }
    .map-container {
        width: 80%;
    }
    .map-container iframe {
        width: 100%;
    }
    .address{
        width: 80%;
    }
}

/* Mobiele telefoons (max-width: 600px) */
@media (max-width: 600px) {
    .contact-card {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        box-shadow: none;
    }

    .contact-item p {
        font-size: 1.5em;
    }

    .contact-item h4 {
        font-size: 1em;
    }

    .papers {
        flex-direction: column;
        align-items: center;
    }

    .pdfIcon {
        width: 40px;
    }
    .map-container {
        width: 100%;
    }
    .map-container iframe {
        width: 100%;
    }
    .address{
        width: 100%;
    }
}