* {
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.header {
    background: #81559b;
    color: #fff;
    padding: 20px 20px;
}
.header__title {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}
.main {
    background: #f7f7ff;
    flex-grow: 1;
    padding: 20px;
}
.advices {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advices__title {
    font-size: 25px;
    margin: 20px 0;
    font-weight: 700;
}
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    margin: 20px;
}
.search {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 19px;
}
.search__label,
.search__input,
.search__select {
    font-size: 19px;
}
.search__input {
    max-width: 70px;
    padding: 5px 0;
    text-align: center;
}
.btn {
    margin: 0 10px;
    padding: 5px 20px;
    cursor: pointer;
    background: #e6bdff;
    border: 2px solid #81559b;
    font-size: 17px;
}
.btn:hover {
    color: #fff;
    background: #81559b;
}
.list__item {
    font-size: 22px;
    background-color: #e6bdff;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 20px;
}
@media (max-width: 1030px) {
    .container {
        flex-direction: column;
        gap: 10px;
    }
}