body {
    font-family: Arial, sans-serif;
    margin: 0;
}

.header {
    background: #cf1c44;
    border-top: 3px solid #0B9446;
    color: white;
}

.header__container {
    max-width: 1600px;
    margin: 0 auto;
}

.header, .content {
    padding: 1rem;
}

.menu {
    list-style: none;
    display: inline-block;
    float: right;
    margin-top: 3.5rem;
}

.menu li {
    display: inline;
    padding: 1rem;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    transition: 0.15s all;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

.menu li a:hover {
    border-bottom: 2px solid #fff;
}

.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: 50%;
    color: #fff;
    display: block;
    width: 100%;
    height: 65vh;
    text-align: center;
    margin-top: -54px;
}

.hero:before {
    content: ' ';
    background-color: rgba(50, 50, 50, 0.7);
    width: 100%;
    height: 65vh;
    position: absolute;
    display: block;
}

.hero__text {
    z-index: 99;
    position: relative;
    font-size: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 5rem;
    padding-top: 25vh;
    margin-bottom: 1rem;
}

.content__container {
    max-width: 1280px;
    margin: 0 auto;
}

.content__image {
    display: inline-block;
    width: 500px;
    float: right;
    margin: 2rem;
    border: 5px solid #0b9446;
}

.footer {
    background: #cf1c44;
    border-bottom: 3px solid #0B9446;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem;
    margin-top: 3rem;
    text-align: center;
}