@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=League+Spartan:wght@100..900&display=swap');

.container {
    width: 1200px;
}

.header-wrapper {
    background: rgb(211, 18, 69);
}

.header-wrapper:after {
    content: "EXPERIENCE THE KELLER DIFFERENCE";
    font-size: 42px;
    color: white;
    display: grid;
    place-items: center;
    width: 100%;
    height: 240px;
    font-family: "Roboto Condensed";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(header_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header {
    display: flex;
    justify-content: space-between;
    background: rgb(211, 18, 69);
    color: white;
}

.header__right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.header__logo img {
    max-height: 109px;
    margin: 50px 0px 15px;
}

.socials {
    margin-right: 10px;
    margin-top: 30px;
}

.socials a {
    color: white;
    margin-left: 12px;
    font-size: 20px;
    text-decoration: none;
}

.socials a:hover {
    color: black;
}

.header__buttons {
    margin-top: 14px;
}

.header__buttons a {
    border: 2px solid white;
    padding: 10px 26px;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s;
    color: white;
    border-radius: 4px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;

}

.header__buttons a:hover {
    background: white;
    color: rgb(211, 18, 69);
}

.header__buttons a:nth-child(2) {
    background: #232020;
    color: white;
    border-color: #232020;
}

.header__buttons a:nth-child(2):hover {
    background: white;
    color: black;
    border-color: white;
}


/* Nav (bottom-right) */
.header__nav {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
}

.header__nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    font-size: 16px;
    text-transform: uppercase;
    padding: 13px 0;
    margin: 0 25px;
    font-family: "League Spartan", sans-serif;
}

.header__nav a:hover {
    color: black;
}

.header__nav a:first-child {
    margin-left: 0;
    /* remove left margin on the first link */
}

.header__nav a:last-child {
    margin-right: 0;
    /* remove right margin on the last link */
}

.header__nav a[href="/"] {
    color: black;
}

.header__nav a[href="/"]:hover {
    color: white;
}
