
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #5d8ab5;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100vh;
}

.logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.main-logo {
    width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.floating-box {
    position: absolute;
    width: 200px;
    height: 130px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid red;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.floating-box img { width: 100%; height: 100%; object-fit: cover; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


.box-1 { top: 10%; left: 5%; }
.box-2 { top: 5%; left: 42%; }
.box-3 { top: 10%; right: 5%; }
.box-4 { top: 45%; left: 10%; }
.box-5 { top: 45%; right: 10%; }
.box-6 { bottom: 10%; left: 15%; }
.box-7 { bottom: 10%; right: 15%; }

@media (max-width: 768px) {
    body {
        overflow-y: auto; 
        display: block;
    }

    .container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .logo-wrapper {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 30px;
        text-align: center;
    }

    .main-logo {
        width: 200px; 
    }

    .floating-box {
        position: relative; 
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 90%; 
        max-width: 350px;
        height: 180px;
        animation: none; 
    }
}