/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

/* Centered GIF */
.center-gif {
    max-width: 100%;
    height: auto;
    max-height: 70vh; /* Scales within viewport */
}

/* Discord Logo */
.discord-logo {
    width: 50px; /* Default size */
    transition: transform 0.3s ease;
}

/* Hover Effect */
.discord-logo:hover {
    transform: scale(1.1);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .discord-logo {
        width: 40px;
    }
}
