body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center logo */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-logo img {
    width: 300px;
    /* height: 200px; */
    /* border-radius: 50%; */
}

/* Left menu icon */
.menu-icon {
    position: absolute;
    top: 30px;
    left: 30px;
}

.menu-icon img {
    width: 30px;
    height: 30px;
}

/* Right icons */
.right-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.right-icons a img {
    width: 30px;
    height: 30px;
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.footer p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.footer a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #003366;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .center-logo img {
        width: 150px;
        height: 150px;
    }
    
    .menu-icon {
        top: 20px;
        left: 20px;
    }
    
    .right-icons {
        top: 20px;
        right: 20px;
        gap: 15px;
    }
    
    .menu-icon img, .right-icons a img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .center-logo img {
        width: 120px;
        height: 120px;
    }
    
    .menu-icon {
        top: 15px;
        left: 15px;
    }
    
    .right-icons {
        top: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .menu-icon img, .right-icons a img {
        width: 20px;
        height: 20px;
    }
}
