body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #121212;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

#main-nav {
    background: linear-gradient(to right, #3a3a3a, #282828);
    padding: 10px 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: .5rem 1rem;
}

.nav-links a:hover {
    background: linear-gradient(45deg, #fb79ff, #ec35bf);
    border-radius: 5px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        width: 30%;
        top: 50px; /* Adjust based on nav height */
        right: 40px;
        z-index: 1000;
        
        background: #ff5fc7;

        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
}

#hero {
    padding: 40px 20px;
}

.container {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
}

.column {
    flex: 1;
    padding: 20px;
}

.left-column h1 {
    background: linear-gradient(45deg, #71d7ff, #1fa2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
}

.right-column {
    display: flex;
    justify-content: space-around;
}

.square {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 200px;
    height: 200px;
    padding: 20px;

    border-radius: 10px;
    animation: gradientLoop 5s infinite;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400% 400%;

    font-size: 2em;
    font-weight: bold;
    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.square:hover {
    transform: scale(1.05); /* Enlarges the div by 5% */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Adds a shadow for a 'lifting' effect */
}

.right-column a {
    text-decoration: none;
    color: white;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-column h1 {
        text-align: center;
        font-size: 2em;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin-bottom: 10px;
    }
}