body {
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    margin: 0;
    color: #373737;
    box-sizing: border-box;
    word-wrap: break-word;
    align-items: stretch;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    white-space: pre-wrap;
}

.header {
    height: 50px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid gray;
}

h1 {
    display: flex;
    align-self: center;
}

.ru-text {
    height: 30px;
    width: 45px;
    background-image: url('./img/ru-flag-01.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    border: none;
    color: white;
    opacity: 0.3;
}

.en-text {
    height: 30px;
    width: 45px;
    background-image: url('./img/en-flag-01.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50px 30px;
    border: none;
    color: transparent;
    opacity: 0.3;
}

section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

h4 {
    display: flex;
    align-self: center;
}

.text-side {
    display: flex;
    flex-direction: column;
}

p {
    color: #5E5E5E;
}

.image-side {
    display: flex;
    width: 200px;
    height: 30px;
    background-image: url('./img/divider.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    align-self: center;
}

.lang-btn-active {
    opacity: 1;
}

@media screen and (max-width: 400px) {
    body {
        padding: 30px 20px;
    }
}