body {
    background-color: #ffeb3b;
    font-family: "Comic Sans MS", cursive;
    margin: 20px;
}

header {
    background-color: #ff9800;
    padding: 10px;
    border: 5px dashed red;
    text-align: center;
}

.button {
    background-color: #4caf50;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
}

nav {
    background-color: #9c27b0;
    padding: 15px;
    margin-top: 10px;
    text-align: center;
}

.nav-link {
    color: yellow;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

h1 {
    color: #e91e63;
    text-align: center;
    text-shadow: 3px 3px 0px #ffc107;
    font-size: 35px;
}

.info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

article {
    background-color: #8bc34a;
    width: 45%;
    margin: 10px;
    padding: 15px;
    border: 3px dotted blue;
    border-radius: 20px;
}

h2 {
    color: #2196f3;
    font-size: 22px;
    text-decoration: underline;
}

img {
    border: 5px solid #ff5722;
    border-radius: 15px;
}

.article-but {
    background-color: #f44336;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

footer {
    background-color: #3f51b5;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border: 4px double white;
}

footer p {
    color: white;
    font-size: 18px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
}
