body {
    margin: 0;
    background: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;

    /* background-image: url('https://spset.roflanov.ru/others/ilya.jpg'); */
    background-size: cover;
    background-repeat: no-repeat; 
    background-attachment: scroll;
    background-position: -8000px;
    background: #020024;
    background: linear-gradient(356deg,rgba(2, 0, 36, 1) 0%, rgb(58, 24, 24) 23%, rgb(173, 12, 12) 100%);
}

.gallery {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.gallery img.visible {
    opacity: 1;
    transform: translateY(0);
}




.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes zoomIn {
    0% {
        transform: scale(3);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        font-size: 48px;
    }
}


#info {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 30px;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

#name {
    color: red;
    font-size: 48px;
    font-weight: 600;
    animation: zoomIn 3s ease-out forwards;
    font-size: 300%;
}

#infotext {
    text-align: left;
    color: white;
}


#stick_gifs { 
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    flex-direction: row;   
    gap: 12px;  
    z-index: 1000;
    pointer-events: none;
    margin-bottom: -200px;
}

.stick_gif {
  width: 20%; 
  height: auto;
  transition: transform .3s ease, opacity .3s ease;
  margin-top: 150px;
  margin-left: 10%;
  margin-right: 10%;
}
