html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-width: 320px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 2;
    color: #fff;
    background-image: url('./img/field.jpeg');
    background-size: cover;
}

.header {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;

}


.switch-lg {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 50px;
    list-style: none;
    cursor: pointer;
}

.english_active {
    color: #000;
}

.english_active:hover {
    color: #fff;
}

.bel_nonactive {
    color: #fff;
}

.bel_nonactive:hover {
    color: #000;
}

.bel:hover {
    color: #fff;
}

.bel {
    color: #000;
}

.english:hover {
    color: #000;
}

.lg {
    padding: 0 5px;
    font-size: 20px;
    line-height: 50px;
    transition: 0.3s;
    cursor: pointer;
}

.lg input[type=radio] {
    display: none;
}


.lg label {
    cursor: pointer;
    line-height: 50px;
    font-weight: bold;
    user-select: none;
}

.main {
    display: block;
    padding: 50px;
}

.wrapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    height: 70%;
    min-height: 280px;
    padding-top: 30px;
}

.active {
    background-color: rgb(233, 14, 14);
    opacity: 0.7;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font: italic 40px bold;
    color: #fff;
    padding: 20px;
}

.author {
    margin-top: 20px;
}


button {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-color: transparent;
    border: 0;
    transition: .3s;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-image: url(./img/click.svg);
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    margin-top: 10px;
}

button:hover {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.button_active {
    filter: invert(100%) sepia(95%) saturate(0%) hue-rotate(194deg) brightness(106%) contrast(106%);
}


.footer-wrapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 20px;
}

.footer-data {
    display: flex;
    align-items: center;
}

.copyright {
    padding-right: 20px;
}

.github {
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
    transition: .3s;
    cursor: pointer;
}

.github:hover {
    color: #000;
    cursor: pointer;
    font-size: x-large;
}

.rss {
    width: 135px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./img/rss.svg');
    transition: .3s;
    cursor: pointer;
}

.rss:hover {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(62deg) brightness(110%) contrast(109%);
}



@media (max-width: 768px) {
    body {
        background-size: cover;
    }

}