

/* Sekcja główna */

main{
width: 100%;
height: 100%;
background-color: #fcfbf9;
display: flex;


}
.background_white{
width: 100%;
height: 50%;
background-color: #fcfbf9;


}
iframe {
    width: 80%;
    max-width: 1000px;
    height: 700px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    margin: 8px auto;
    display: block;
    
}

h2{
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 55px;
    font-weight: bold;
    text-shadow: 2px 1px 2px gray;
    
}



/* --- MEDIA QUERIES --- */

/* TABLET: poniżej 1100px */
@media screen and (max-width: 1100px) {
    iframe{
        height: 600px;
    }
}

/* TELEFON: poniżej 790px */
@media screen and (max-width: 790px) {
    iframe{
        height: 400px;
    }
    h2{
        font-size: 50px;
    }
}
@media screen and (max-width: 600px) {
    
    h2{
        font-size: 40px;
    }
    body{
        height: 600px;
    }
}

/* MAŁE TELEFONY: poniżej 480px */
@media screen and (max-width: 480px) {
    iframe{
        height: 420px;
    }
    h2{
        font-size: 30px;
    }
}
@media screen and (max-width: 380px) {
    
    h2{
        font-size: 28px;
        margin: 8px 5px;
    }
}
@media screen and (max-width: 250px) {
    
    h2{
        font-size: 22px;
        margin: 8px 5px;
    }
}
