body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
             position: fixed;
            top: 0;
            left: 0;
            width:100%;
            height: 100%;
            background-image: url('bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: repeat;
            z-index: -1;
}

.content {
    text-align: center;
    padding-top: 50px; /* Adjust as needed */
}

.centered-image {
    display: flex;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
}

.centered-image img {
    max-width: 70%;
    height: auto;
}

.serie-text {
    color: white;
    font-size: 14px;
}

footer {
    position: fixed;
bottom: 0;
    color: white;
    font-size: 12px;
    text-align: left;
    padding: 15px;
}

.footer-text {
    margin: 0;
}

