.header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: x-large;
    font-weight: bold;
    color: #4cff05;
    border-radius: 5px;
    background-image: url("img/lifeofparty_thumbnail.gif");
    background-size: contain;
    background-repeat: repeat; 
    background-position: center;
}

.header2 {
    color: #b5b8c7;
    text-align: center;
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #b5b8c7;
    border-radius: 5PX;
    padding: 20px

}

a:hover {
    color: #ff0505;
}

a:visited {
    color:rgb(51, 255, 0);
}

body {
    background-color: black;
}

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    padding: 20px;
    background-color: #b5b8c7;
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 100%;
    max-height: 100%;
}

.images-container img {
    flex: 1 1 200px;
    max-width: 100%;
    height: auto;
}

.image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 10px;
    background-color: #ac00fc;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: medium;
    font-weight: bold;
    color: #56575f;
}

.movies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: auto; 
}

.movie {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.total {
    display: flex;
    justify-content: center;
    align-items: center;
    color: blue;

}