.whale-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px 2px 2px 2px solid #333;
}

#whale {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-instruction {
    /* position: fixed; */
    /* bottom: 20px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 1000;
    font-size: 16px;
    text-align: center;
}

/* @media (min-width: 768px) {
    .mobile-instruction {
        display: none;
    }
} */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4a9eff;
}

@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }
    .social-links a {
        font-size: 20px;
    }
}