body{
    position: relative;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    background-image: url("./pictures/about/wat.webp");
    /* background: beige; */

}


.map{
    margin-top: 20px;
    
    display: flex;
    justify-content: center;
    
}
.up-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
    text-align: center;
}

.detail1{
    margin-top: 2em;
    padding: 1em;
    border-radius: 5px;
    background-color: antiquewhite;
}
.map iframe{
    border: none;
    width: 100%;
    max-width: 30vw;
    height: auto;
    border: none;
    border-radius: 8px;
}





section {
    width: 80%;
    margin: 3em auto; 
    background-color:  rgba(0, 0, 0, 0.8);
    /* background: rgba(0, 0, 0, 0.8); */
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.dir{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
}


body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    /* background: beige; */
    background: none;

    z-index: -1;
    
}


#headerA {
    font-size: 2.2em;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0.5em 1em;
    padding: 0.75em 1em;
    text-shadow: 2px 2px 5px rgba(0.9, 0.9, 0.9, 0.9);
    letter-spacing: 1.5px;

    background: linear-gradient(180deg, #032ea1, #e00025, #032ea1);
    color: white

}

#calendar{
    margin-left: 5vw;
    width: 40vw; 
    height: 25vw;
    padding: 1.5em;
    background-color: antiquewhite;
    
}

@media screen and (max-width: 1200px) {
   .dir{
    flex-direction: column;
   } 

   .map iframe{
        width: 60vw;
        max-width: 60vw;
        height: 50vw;
    }


    #calendar{
        margin-left: 0;
        width: 60vw;
        max-width: 60vw;
        height: 50vw;
    }
}