body {
    background:linear-gradient(to bottom, #b1ffee, #fff);
}
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.background-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10vw);
    opacity: 0.7;
}
.shape1 {
    background: #40fd89;
    width: 380px;
    height: 380px;
    top: -221px;
    left: -171px;
    animation: moveShape 20s infinite alternate;
}
.shape2 {
    background: #11f1c1;
    width: 150px;
    height: 150px;
    top: 0;
    right: -80px;
    animation: moveShape2 25s infinite alternate-reverse;
}

.shape3 {
    border: 8px solid #fff;
    width: 150px;
    height: 150px;
    top: 15vw;
    left: 10vw;
    filter: blur(10px);
    animation: moveShape2 25s infinite alternate-reverse;
}

@keyframes moveShape {
    from {
        transform: translate(0, 0) rotate(0) scale(1);
    }
    to {
        transform: translate(20vw, 10vh) rotate(60deg) scale(1.1);
    }
}
@keyframes moveShape2 {
    from {
        transform: translate(0, 0) rotate(0) scale(1);
    }
    to {
        transform: translate(-5vw, -2vh) rotate(-180deg) scale(1.2);
    }
}
.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.top-text{
    margin-top:3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.top-text .qs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}
.top-text .qs span{
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    gap:.5vw;
}
.top-text .qs span img{
    width: 16px;
}
.top-text .qs span p{
    font-size: .9rem;
    font-weight: normal;
    color:#00a23f;
}
.top-text p{
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2vw;
    color: #0b2716;
}

.top-block {
    margin-top: 2vh;
    text-align: center;
}
.top-block img {
    max-width: 60vw;
    height: auto;
    display: block;
}

.bottom-block {
    position: relative;
    width: 100%;
    background: linear-gradient(to top, #a9fb87, #8ef9e3);
    padding: 8vw 3vw 3vw 3vw;
    border-radius: 3vw;
}
.bottom-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 8vw;
}
.bottom-block ul li {
    position: relative;
    flex-grow: 1;
    background-color: #ffffff;
    color: #000000;
    border-radius: 12px;
    padding: 4vw 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(130, 0, 255, 0.2);
    height: 20vw;
}
.bottom-block ul li img {
    width: 13vw;
    margin-right: 10px;
    position: absolute;
    bottom: 0;
    right: 15vw;
}
.bottom-block ul li:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(130, 0, 255, 0.2);
}
.bottom-block ul li p {
    margin-right: 20vw;
    font-weight: 500;
    font-size: 1.3rem;
}
footer {
    margin-top: auto;
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
}
footer p {
    color: #212121;
    font-size: 0.8rem;
    direction: ltr;
}
footer p span {
    font-weight: 400;
}
