body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

a {
    display: block;
    color: black;
    margin-top: 16px;
    margin-bottom: 16px;
}

.article-title {
    font-weight: bold;
    font-size: xx-large;
    color: rgb(22, 1, 27);
    text-decoration: underline;
}

img {
    height: 300px;
}

.button {
    background: cornflowerblue;
    padding: 1em 2em;
    color: #fff;
    border: 0;
}

.button:hover {
    background: #333;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: #f4f4f4;
    margin: 5% auto;
    width: 70%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 1s;
}

.modal-header h2,
.modal-footer h3 {
    margin: 0;
}

.modal-header {
    background: cornflowerblue;
    padding: 15px;
    color: #fff;
}

.modal-body {
    padding: 10px 20px;
    align-self: auto;
}

.modal-footer {
    padding: 10px;
    background-color: cornflowerblue;
    color: #fff;
    text-align: center;
}

.closeBtn {
    color: #ccc;
    float: right;
    font-size: 30px;
    color: #fff;
}

.closeBtn:hover,
.closeBtn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.buddy {
    height: auto;
    width: 25%;
}

@keyframes modalopen {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}