body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: white;
    padding: 15px 30px;
}

.logo {
    font-size: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #333;
    padding: 10px;
}

.dropdown-menu li {
    margin: 10px 0;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}


.hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}

.fade-in {
    display: none;
}


.content {
    padding: 40px;
    text-align: center;
}

.box {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    background: steelblue;
    position: relative;
}


.rotate {
    transform: rotate(180deg);
    transition: transform 0.6s ease;
}

.move-box{
    display: inline-block;
    margin: 32px;
}


.zoom {
    transform: scale(1.5);
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .hamburger {
        display: block;
    }

}