/* Réinitialisation des marges et des bordures par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;

}

body {
    font-family: 'Impact', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('couverture.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.container {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 10rem;
    margin-bottom: 20px;
}


.instagram-link-container {
    margin-top: 20px;
}

.instagram-link {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

.instagram-link:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

#utopiales-selection {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 5rem;
    }
    .film-by {
        margin-top: 100px;
    }
}

    @media (max-width: 768px) {
        h1 {
            font-size: 4rem;
        }

        #utopiales-selection {
            position: absolute;

            width: 100px;
        }
        .film-by {
            margin-top: 100px;
        }
        
    }