body {
    font-family: Arial, sans-serif;
    background: linear-gradient(-90deg, #000000, #8a2be2, #000000, #8a2be2, #000000);
    background-size: 300% 400%;
    animation: gradientAnimation 15s ease infinite;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.profil-img {
    width: 40px;
    height: 40px;
}

.biography {
    max-width: 650px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    animation: slide-in-bottom 1s ease-out;
}

.profile-img {
    display: block;
    margin: 0 auto 10px;
    /* Центрируем изображение */
    max-width: 180px;
    /* Устанавливаем максимальную ширину изображения */
    border-radius: 50%;
    /* Делаем изображение круглым */
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 1px;
}

p {
    line-height: 1.6;
    color: #666;
}