* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(270deg, #ff0080, #ff8c00, #40e0d0, #4b0082, #32cd32);
    background-size: 1000% 1000%;
    animation: bgShift 15s infinite alternate ease-in-out;
}

@keyframes bgShift {
    0% {
        background-position: 0% 50%
    }
    100% {
        background-position: 100% 50%
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10
}

.navbar .logo {
    font-weight: 700;
    font-size: 1.5rem
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .3s
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #ffea00;
    text-shadow: 0 0 10px #fff
}

.hero {
    text-align: center;
    padding: 100px 20px
}

.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px #000
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem
}

.btn {
    background: #ffea00;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s
}

.btn:hover {
    background: #fff;
    color: #111
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0
}

.gallery img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    animation: spin 40s linear infinite;
    transition: .5s
}

.gallery img:hover {
    animation-duration: 10s;
    transform: scale(1.1)
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

footer {
    text-align: center;
    padding: 25px 10px;
    background: rgba(0, 0, 0, 0.6);
    font-size: .9rem;
    margin-top: 50px
}

footer a {
    color: #ffea00;
    text-decoration: none
}

footer a:hover {
    text-decoration: underline
}