body {
    font-family: "Arial", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}
html {
    scrollbar-color: #d5d632 #000;
    scrollbar-width: thin;
    font-size: 18px;
}
* {
    box-sizing: border-box;
}

/* fonts */
h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
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: #d6d700;
}
.kwLogoHead {
    margin: 0 auto 70px;
    display: block;
    max-width: 100%;
    height: auto;
    animation-duration: 3s;
    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,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}

/* 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;
}
h1 {
    color: #f00;
}


@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;
}
}*/