body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-family: Roboto;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

p {
    width: 100%;
    font-size: 18px;
    text-align: justify;
    overflow-x: auto;
}

li {
    font-size: 18px;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.blogTitle {
    width: 100%;
    margin-top: 2%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: dotted 3px rgb(150, 150, 150);
}

.blogTitle img {
    width: 50%;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.3);
}

.releaseDate {
    font-size: 12px;
    color: rgb(120, 120, 120);
    display: flex;
    justify-content: center;
    align-items: center;
}

article {
    width: 90%;
    margin: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section {
    margin-top: 2%;
    padding: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: dotted 3px rgb(150, 150, 150);
}

section img {
    width: 100%;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.3);
}

/* Tablets */
@media (min-width: 481px) {
}

/* Desktop-Pc */
@media (min-width: 1024px) {

    .blogTitle {
        width: 75%;
    }

    section img {
        width: 80%;
    }
}