body {
    font-family: 'Prosto One', 'sans-serif';
    margin: 0;
    background: linear-gradient(300deg,#3a097f,#120b36,#3a097f,#120b36,#3a097f,#120b36);
    background-size: 360% 360%;
    animation: gradient-animation 10s ease infinite;
    color: var(--text-color);
    overscroll-behavior: none;
}

@keyframes gradient-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.index-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    box-shadow: 0 10px 25px 0 rgba(33, 29, 100, 1);
    border: none;
    width: 464px;
    height: 89px;
    min-width: 364px;
    border-radius: 50px;
    text-align: center;
    line-height: 89px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.index-button:hover {
    background-color: #8669d0;
}

.indexes-container {
    max-width: 1800px;
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 300px;
}

.index-container {
    background: linear-gradient(300deg,#8400dd,#4a2988,#302b49,#8400dd,#4a2988,#302b49);
    background-size: 360% 360%;
    display: flex;
    flex-direction: column;
    padding: 150px 100px;
    margin-right: 100px;
    margin-left: 100px;
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.index-container:not(:first-child) {
    margin-bottom: 100px;
}

.animation-first {
    animation: gradientAnimationForFirstContainer 10s infinite alternate;
}

.animation-second {
    animation: gradientAnimationForSecondContainer 10s infinite alternate;
}

@keyframes gradientAnimationForFirstContainer {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradientAnimationForSecondContainer {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.index-container-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 80px;
    height: 139px;
    width: 40%;
    border: none;
    text-align: center;
    line-height: 139px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.index-container-button:hover {
    background-color: #8669d0;
}

.big-logo {
    margin-top: 80px;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
}

.create-find {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 100%;
}

.index-text {
    font-size: 80px;
}

.site-description {
    font-size: 45px;
    text-align: center;
}

@media (max-width: 1300px) {
    .big-logo {
        width: 300px;
        margin-top: 20px;
    }

    .indexes-container {
        width: 100%;
        margin-top: 80px;
        gap: 100px;
    }

    .index-container {
        padding: 50px 50px 50px 50px;
        width: 60%;
    }

    .index-text {
        font-size: 25px;
    }

    .site-description {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .index-button {
        font-size: 20px;
        width: 80%;
        max-width: 300px;
        min-width: auto;
        height: 50px;
    }

    .index-container-button {
        font-size: 20px;
        width: 50%;
        height: 50px;
        max-width: 300px;
    }
}

@media (max-width: 820px) {
    .big-logo {
        width: 300px;
        margin-top: 20px;
    }

    .create-find {
        flex-direction: column;
        gap: 20px;
    }

    .indexes-container {
        width: 100%;
        margin-top: 80px;
        gap: 100px;
    }

    .index-container {
        width: 90%;
        padding: 30px 30px 30px 30px;
        box-sizing: border-box;
        margin: 0 0 0 0;
    }
}

