*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    background-color: #1d1d1d;
}

main {
    margin: 0 auto;
    padding: 20px;
    max-width: 800px;
}


h1 {
    margin: 20px 0 80px 0;
    font-size: 40px;
    text-align: center;
    color: #f7146b
}

h1 img {
    width: 100px;
}

h2 {
    color: #999
}

#articles {
    margin: 40px 0 0 0;
}

article {
    margin: 0 0 80px 0;
    display: flex;
    flex-direction: column;
}

article h3 {
    margin: 0 0 10px 0;
    font-size: 42px;
    line-height: 50px;
    color: #f7146b;
}

article .tags {
    margin: 0 0 30px 0;
    display: flex;
    list-style-type: none;
}

article .tags li {
    padding: 2px 8px;
    margin: 0 15px 0 0;
    color: #555;
    border: 1px solid #555;
    border-radius: 8px;
}

article .tags li:hover {
    color: #777;
    border: 1px solid #777;
    cursor: pointer;
}

article img {
    margin: 0 0 30px 0;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
}

article p {
    margin: 0 0 30px 0;
    text-align: justify;
}

article button {
    padding: 8px 0;
    width: 150px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #f7146b;
    border-radius: 3px;
    cursor: pointer;
    align-self: flex-end;
}

footer {
    padding-top: 30px;
    color: #555;
    font-size: 12px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
}

footer p a {
    color: #555;
    text-decoration: none;
}

footer p a:hover {
    color: #999;
    text-decoration: underline;
}