body {
    margin: 0px;
    background-color: black;
}
header {
    padding: 10px 5%;
}
h1 {
    color: white;
    font-size: 32px;
}
strong {
    color: red;
}
h2 {
    color: white;
    font-size: 18px;
}
h1 , h2 {
    line-height: 10px;
}
nav {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
nav a {
    text-decoration: none;
    color: white;
    background-color: rgb(122, 4, 4);
    padding: 5px 15px;
    margin: 5px;
}
header img {
    width: 100%;
    max-width: max-content;
    padding: 10px 0px;
}
.top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
section {
    background-color: rgb(89, 89, 90);
    display: flex;
    flex-direction: row;
    padding: 0px 5%;
}
section article {
    padding: 1% 1%;
    background-color: rgb(146, 148, 150);
    margin: 1%;
}
article h2{
    color: rgb(122, 4, 4);
    text-align: center;
}
article p {
    color: black;
    text-align: justify;
}
article img {
    width: 100%;
    max-width: max-content;
}
.first {
    flex: 1;
}
.second {
    flex: 2;
}
footer {
    display: flex;
    flex-direction: row;
    color: white;
    justify-content: space-around;
}
footer a {
    text-decoration: none;
    color: white;
    padding-top: 15px;
}
@media (max-width: 1280px) {
    nav {
        justify-content: center;
    }
    .top {
        flex-direction: column;
    }
    .name {
        text-align: center;
    }
}
@media (max-width: 1000px) {
    section {
        flex-direction: column;
    }
    nav {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }
}
