/*
Theme Name: GIF Frontpage Only
Author: Custom AI
Description: Ένα απλό theme με μόνο μια αρχική σελίδα που δείχνει ένα κεντραρισμένο GIF.
Version: 1.0
*/

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

body, html {
    width: 100%;
    height: 100%;
    /* Το χρώμα από το image_32627c.png για να μην φαίνεται το πλαίσιο */
    background-color: ##FFFFFF; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Κρύβει τα scrollbars */
}

.gif-container {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.id-gif {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}