body {
    background: linear-gradient(90deg, rgb(255, 230, 0), purple);
    background-size: 200% 200%;
    animation: bgmove 5s linear infinite alternate;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

p, ul {
    font-size: 1.5rem;
}

nav {
    backdrop-filter: blur(100px);
    box-shadow: 0px 0px 10px 0px black;
    font-size: 1.5rem;
    display: flex;
}

a {
    text-decoration: none;
    color: white;
}

a::after {
    content: "";
    display: flex;
    background-color: white;
    width: 100%;
    height: 3px;
    opacity: 0;
    transform: scale(0%);
    transition: all 0.3s ease-in-out;
}

a:hover:after {
    transform: scale(100%);
    opacity: 1;
}

.row {
    margin-bottom: 1rem;
}

main {
    box-shadow: 0px 0px 15px 0px black;
    animation-name: zoom;
    animation-duration: 0.7s;
    flex: 1;
}

footer {
    backdrop-filter: blur(100px);
    box-shadow: 0px 0px 10px 0px black;
}

#gifs {
    display: grid;
    place-content: center;
    place-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    flex: 1;
}

@keyframes zoom {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bgmove {
    from {
        background-position: right;
    }

    to {
        background-position: left;
    }
}

@media (max-width: 767px) {
    nav {
        justify-content: space-evenly;
    }
}
