body {
    max-width: 1200px;
    margin: 0 auto;
    background-color: black;
    color: white;
}

h1 {
    color: white;
    font-family: "Staatliches", sans-serif;
    letter-spacing: 4px;
    text-align: center;
    transform: rotate(-4deg);
}

header {
    position: relative;
    text-align: center;
    position: relative;
    text-align: center;
    padding-top: 90px;
}

#chat {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 8px;
}


#h1-first-letter {
    color: #ff0000;
}

#cinema-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
}

#cinema-image:hover {
    filter: none;
}

.columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

p {
    line-height: 24px;
    color: grey;
}

footer {
    text-align: center;
    margin-top: 40px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    font-family: "Staatliches", sans-serif;
    position: relative;
}

.download-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url("https://cdui04.afpa-balma.fr/evaluation/1x/Plan%20de%20travail%201.png");
    background-size: contain;
    background-repeat: no-repeat;    
    background-position: left center;
    margin-left: -15px;
}

.download-button:hover {
    background-color: white;
    color: #ff0000;
}

.download-button:hover::before {
    background-image: url("https://cdui04.afpa-balma.fr/evaluation/1x/Plan%20de%20travail%202.png");
}

.icon {
    display: none;
}

@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    #chat {
        display: none;
    }

    .cinema-text {
        display: none;
    }
}