.body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

/* The top container with the back arrow*/

.black-bg {
    background-color: #2c2f33;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-box {
    background-color: #ffffff;
    color: black;
    margin-left: 100px;
    margin-right: 100px;
    padding-bottom: 20px;
}

.content-box {
    padding-left: 800px;
    padding-right: 100px;
    /* Adding padding to move the title of the page to the right */
    font-weight: 900;
}

h1{
    font-weight: 900;
}

h2 {
    padding-left: 80px;
    color:red;
    font-weight: 900;
}

/* Style for the back arrow button */
.back-arrow {
    width: 100px;
    padding-left: 30px;
    padding-top: 20px;
    cursor: pointer;
    /* Show cursor as pointer on hover */
    padding-top: 60px;
}

/* the articles in the container*/
.container {
    margin-top: 20px;
}

.row {
    margin-bottom: 20px;
}

.col-4 {
    position: relative;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 20px;
    text-align: left;
    opacity: 1;
    font-weight: 700;
    font-size: 20px;
}

.text-container p {
    margin: 0;
}

/* footer content */

footer {
    background-color: #ffd860;
    color: #000000;
    padding: 20px 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: justify;
}

.mail-icon{
    width: 50px;
    height: 50px;
    margin-left: 70px; /* so that the spacing is effected only on the outside */
}

.mail-icon img {
    display: block;
    width: 100%;
}

.mail-icon a {
    padding-left: 400px;
    /* so that the mail icon is aligned with the left part of the text of the footer*/
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* so that all the content is in line (being vertically aligned)*/
    max-width: 1500px;
    /* large amount of px was needed so a good amount of space is distributed between */
    margin: 0 auto;
}

.container-fluid{
    padding: 50px;
  }

.col-3{
    padding-top: 20px;
  }

.col-3 p {
    padding-left: 70px;
    /* to leave space between the cols */
}

.col-4 p {
    padding-left: 30px;
    padding-right: 40px;
    /* to leave space between the cols */
    padding-top: 20px;
}

.col-3 a {
    text-decoration: none;
    padding-left: 70px;
}

footer ul {
    list-style: none;
    padding-top: 20px;
    padding-left: 20px;
    font-size: 25px;
}

footer ul li {
    margin-bottom: 5px;
    text-align: center;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

