* {
    box-sizing: border-box;
}

body {
    background-color: white;
    margin-right: 5%;
    margin-left: 5%;
}

header {
    background-color: #120c0c;
    height: 100px;
    border-bottom: solid 5px #b1964f;
    color: white;
    font-family: 'Maven Pro', sans-serif;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 20px;
}


.headerlogo {
    height: 80px;
}

.home-image {
    width: 100%;
    height: 100px;
    position: relative;
}

.front-page-images {
    display: flex;
    flex-direction: column;
}


.box {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    border-radius: 0px 15px;
}

.black {
    background-color: #120c0c;
}

.gray {
    background-color: darkgray;
}

.light-gray {
    background-color: lightgray;
}

footer {
    background-color: #120c0c;
    height: 50px;
    border-top: solid 5px #b1964f;
    color: white;
    font-family: 'Maven Pro', sans-serif;
    margin-top: 10px;
}


