body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.full{
    height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#character-logo{
    fill: url(#fillGradient);
    animation: zoom-in-fill 2s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
    #character-logo {
        width: 90%;
        height: auto;
        
    }
    
}

@keyframes zoom-in-fill {
    0% {
        transform: scale(0.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#fillRect {
    animation: netflixFill 1s ease-in-out forwards;
}

@keyframes netflixFill {
    0% {
        y: 270;
        height: 0;
    }
    100% {
        y: 0;
        height: 270;
    }
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gradient-background {
  background: linear-gradient(300deg,#011140, #040fd9,#040fd9,#011140);
  background-size: 133% 142%;
  /* animation: gradient-animation 24s ease infinite; */
}

.gradient-green{
    background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes zoomTwist {
    0% {
        transform: scale(0.3) rotate(0deg);
    }

}

/* Open eyes animation - fade out during blink */
#right-eye, #left-eye {
    animation: blink-open 3s ease-in-out ;
}

/* Closed eyes animation - fade in during blink */
#right-eye-closed, #left-eye-closed {
    opacity: 0;
    animation: blink-closed 3s ease-in-out ;
}

@keyframes blink-open {
    0%, 90%, 100% {
        opacity: 1;
    }
    95% {
        opacity: 0;
    }
}

@keyframes blink-closed {
    0%, 90%, 100% {
        opacity: 0;
    }
    95% {
        opacity: 1;
    }
}