@font-face {
    font-family: 'Great_Vibes';
    src: url('Great_Vibes/GreatVibes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }

@font-face {
font-family: 'Darker_Grotesque';
src: url('Darker_Grotesque/DarkerGrotesque-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
    }

body {
    background-color: rgba(255, 255, 255, 0.987);
    color: rgba(100, 100, 100);
    font-family: 'Darker_Grotesque', sans-serif;
    height: 100vh;
    margin: 0%;
    display: flex; 
    justify-content: center;
    cursor: default;
    user-select: none;
}

/* menu */

#nav {
    background-color:rgba(255, 255, 255, 0.987);
    height: 90px;
    width: 100vw;
    z-index: 4;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
    position: fixed
}

#menu {
    height: 100%;
    width: 1200px;
    display: flex;   
}

#menu * {
    position: relative;
    width: 78px;
    height: 26px;
    font-size: 24px;
    text-align-last: center;
    top: 20px;
    margin-left: 30px;
    transition: color 0.5s ease;   
}

#menu_o_mnie:hover{
    color: rgba(236, 207, 21, 0.987);
} 

#menu_oferta:hover{
    color: rgba(236, 207, 21, 0.987);
} 

#menu_kontakt:hover{
    color: rgba(236, 207, 21, 0.987);
} 

/* strona */

#strona {
    margin-top: 90px;
    display: flex;
    justify-content: center;
}

#strona section {
    position: absolute;
    height: calc(100vh - 100px);
}

/* O Mnie */

#o_mnie {
    z-index: 3;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
    position: relative;
    background-color: rgba(255, 255, 255, 0.987);
    
}

#o_mnie_tekst {
    width: 700px; 
    position: relative;  
}

#o_mnie_tekst * {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; 
    font-size: 24px;  
    margin: 12px;
}

#nazwa_centrum, #nazwa_skrzydla {
    font-family: 'Great_Vibes', sans-serif;
    font-size: 80px; 
}

#nazwa_skrzydla {
    margin-bottom: 40px;
}

#nazwa_centrum {
    margin-top: 40px;
}

#o_mnie_foto {  
    width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column; 
}

#foto_1 {
    max-width: 100%;
}

@media (max-width: 700px) {
    #o_mnie_tekst, #o_mnie_foto {
        width: 95vw;
    }
    #nazwa_centrum, #nazwa_skrzydla {
        font-size: 45px;
    }
}

/* Oferta */

#oferta {
    z-index: 2;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
    position: relative;
    transform: scale(0.05); 
    background-color: rgba(255, 255, 255, 0.987);
    
}

#oferta_tekst {
    width: 700px; 
    position: relative;  
}

#oferta_tekst * {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; 
    font-size: 24px;  
    margin: 12px;
}

#oferta_foto {  
    width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column; 
}

#foto_2 {
    max-width: 100%;
}

@media (max-width: 700px) {
    #oferta_tekst, #oferta_foto {
        width: 95vw;
    }
}

/* Kontakt */ 

#kontakt {
    z-index: 1;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    position: relative; 
    transform: scale(0.05);
    background-color: rgba(255, 255, 255, 0.987);
}

#kontakt_tekst {
    width: 450px; 
    position: relative;  
}

#kontakt_tekst * {
    position: relative;
    display: flex;
    
    align-items: center;
    height: auto; 
    font-size: 24px;  
    margin: 12px;
}

#kontakt_nazwa {
    font-family: 'Great_Vibes', sans-serif;
}

@media (max-width: 700px) {
    #kontakt_tekst {
        width: 95vw;
    }
}





