html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.418), rgba(0,0,0,0.418)),
        url('background1.jpeg');

    background-size: cover;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: safe center;
}

.content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 90%;
    max-width: 600px;
}

.poster {
    width: 100%;
    max-width: 600px;
}

.icon-container img {
    width: 13vw;
    max-width: 45px;
    min-width: 25px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.15s ease, filter 0.08s ease;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: white; 
}

.icon-container img:hover {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
    
}