body {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    background-color: #fff9e6;
    margin: 0;
    font-family: "collier", sans-serif;
    font-weight: 500;
    font-style: normal;
}
html {
    scrollbar-color: #e8b0ff #BF9F40;
    scrollbar-width: thin;
    font-size: 18px;
    cursor: url('../images/mouse/zampetta-gialla.svg'), auto;
}
* {
    box-sizing: border-box;
}

/* cursor */
.paw-click {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    opacity: 0.85;
    animation: fadePaw 1.6s ease-out forwards;
    z-index: 9999;
}

@keyframes fadePaw {
    0% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}


/* fonts */
h1 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    color: #AA8511;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
h2 {
    text-align: center;
    font-size: 1.4rem;
    margin: 30px 0 0;
}
p {
    margin: 30px 0 0;
}
.kwH2Style {
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "RobotoSerif", "Arial", sans-serif;
    line-height: 1.35;
    margin-top: 70px;
}
a {
    color: unset;
}
a:hover {
    color: #BBBB25;
}
.kwMargin {
    margin-top: 30px;
}

/* header */
.kwHeaderAbs {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    column-gap: 15px;
}
.kwFlagLang {
    transition: ease-out 0.1s;
    transform: scale(1);
}
.kwFlagLang:hover {
    transform: scale(1.1);
}
.kwLinkLang.kwActiveLang::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #e8b0ff;
}
.kwLogoHead {
    margin: 0 auto 70px;
    display: block;
    max-width: 100%;
    width: 330px;
    height: auto;
    /*animation-name: floating;*/
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    /*filter: drop-shadow(0 0 20px rgba(255,255,255,.1));*/
}
.kwTextCenter {
    text-align: center;
}
@keyframes floating {
    0% { transform: translate(0,  0); }
    50%  { transform: translate(0, 7px); }
    100%   { transform: translate(0, 0); }   
}

/* body */
.kwBody {
    padding: 70px calc((100% - 980px)/2);
    min-height: 100vh;
    display: grid;
    align-content: center;
}
.kwMarginSection {
    margin-top: 70px;
}
.kw2ColRow {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
:first-child {
    margin-top: 0;
}


@media screen and (max-width: 991px) {
    body, html {
        font-size: 16px;
    }
    .kwBody {
        padding: 70px calc((100% - 720px)/2);
    }
}

@media screen and (max-width: 767px) {
    .kwBody {
        padding: 70px 15px;
    }
}

@media screen and (max-width: 480px) {
    .kw2ColRow {
        flex-wrap: wrap;
    }
    .kwCell {
        width: 100%;
    }
}

/*@media (prefers-color-scheme: dark) {
body {
background: #111;
color: #fff;
}
}*/