* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f7f3ee;
    font-family: Montserrat, sans-serif;
    display: flex;
    justify-content: center;
}

/* STRONA MA 80% SZEROKOŚCI */
.page {
    width: 80%;
}

/* LOGO – zakotwiczone u góry */
.logo-fixed {
    position: fixed;
    top: 20px;          /* logo jest u góry, 20px od krawędzi */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    z-index: 100;
}

/* LOGO – zmiana wysokości przy scrollowaniu */
.logo {
    height: 20vh;       /* start: 20% wysokości ekranu */
    width: auto;
    transition: height 0.4s ease;
}

.logo.shrink {
    height: 10vh;       /* po scrollu: 10% wysokości ekranu */
}

/* TREŚĆ DO SCROLLOWANIA */
.content {
    margin-top: 30vh;   /* żeby treść zaczynała się pod logo */
    padding: 40px;
    font-size: 18px;
    line-height: 1.6;
}
