body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-family: Roboto;
}

h1 {
    font-size: 30px;
}

p {
    font-size: 18px;
    text-align: justify;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
}

article {
    width: 100%;
    height: 75vh;
    margin: 2%;
    border-bottom: dotted 1px rgb(150, 150, 150);
}

img {
    width: 100%;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.3);
}

.releaseDate {
    font-size: 12px;
    color: rgb(120, 120, 120);
}

/* Tablets */
@media (min-width: 481px) {

    article {
        width: 25%;
    }
}

/* Desktop-Pc */
@media (min-width: 1024px) {

    article {
        width: 25%;
    }
}