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

footer .holder{
    background: lightgray;
    width: 100%;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
}

.footer-col ul {
    list-style: none;
}

.footer-col h4 {
    color: #3b0908;
    margin: 5px 0 20px 0;
    font-size: 22px;
    position: relative;
    font-family: "Forum", serif;
}

.footer-col h4::before {
    content: "";
    width: 120px;
    height: 2px;
    position: absolute;
    background: #3b0908;
    bottom: -10px;
}

.footer-col ul li a {
    padding: 10px 0;
}

.footer-col ul li a {
    color: #3b0908;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.5s;
}

.footer-col ul li a:hover {
    opacity: 1;
}



/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media (max-width: 800px) {
    .row {
        flex-direction: column;
    }
}

.footerpara {
    font-family: "Forum", serif;
    color: #3b0908;
}

#copyright {
    color: #3b0908;
    font-size: 14px;
}





