@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

.container .heading {
    width: 50%;
    padding-bottom: 50px;
}

.container .heading h3 {
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
}

.container .heading h3 span {
    font-weight: 100;
}

.container .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
}

.container .box .poster {
    display: flex;
    flex-direction: column;
    width: 30%; 
    align-items: center; 
    justify-content: center;
}

.container .box .poster img {
    width: 80%; 
    height: auto; 
    margin-bottom: 10px; 
}

