* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.gif {
    max-width: 90vw;
    max-height: 90vh;
    height: auto;
    width: auto;

}

.footer-links {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-link {
    color: #00FFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-decoration: underline;
    opacity: 1;
    transition: opacity 0.0s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}