body {
    background-image: url("../img/var.bg1.jpg"); /* Используем тот же фон */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.authors-container {
    text-align: center;
    position: relative;
    width: 80%;
    max-width: 1200px;
}

h1 {
    font-size: 4em;
    font-weight: bold;
    /* text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #a66ef5; */
    margin-top: -400px; /* Используем отрицательный отступ, чтобы поднять заголовок */
}

.author-card {
    position: absolute;
    width: 450px;
    height: 250px;
    padding: 20px;
    background: rgba(186, 35, 172, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left {
    top: -50px;
    left: 0;
}

.bottom-right {
    bottom: -50px;
    right: 0;
}

.author-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(186, 35, 172, 0.8);
}