@font-face {
    font-family: 'Domaine Display Narrow';
	src: url('https://d2n43swdo6jzfk.cloudfront.net/dist/fonts/DomaineDisplayNarrowWeb-Bold.eot') format('eot'),
		 url('https://d2n43swdo6jzfk.cloudfront.net/dist/fonts/DomaineDisplayNarrowWeb-Bold.woff2') format('woff2'),
		 url('https://d2n43swdo6jzfk.cloudfront.net/dist/fonts/DomaineDisplayNarrowWeb-Bold.woff') format('woff');
}

a {
    font-weight: bold;
    border-bottom: 2px solid #990000;
    color: #990000;
    text-decoration: none;
    transition: 0.2s all ease;
}

a:visited {
    border-bottom: 2px solid #000066;
    color: #000066;
}

a:hover,
a:focus,
a:hover {
    border-bottom: 2px solid transparent;
}

a:focus {
    background: rgba(153,0,0,0.3);
}

h1 {
    font-family: 'Domaine Display Narrow', 'Times New Roman', Times, serif;
    color: #990000;
    font-size: 2.4rem;
}

body {
    margin: 0;
    background: #262525;
    font-family: "Gotham Narrow SSm A", "Gotham Narrow SSm B", Tahoma, sans-serif;
}

* {
    box-sizing: border-box;
}

header {
    height: 10vh;
    min-height: 60px;
    background-color: #fff;
}

#logo {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo img {
    height: 50%;
    margin: 0 auto;
    width: auto;
    max-width: calc(100% - 32px);
}

main {
    background-image: url('https://d1gtq9mqg5x3oe.cloudfront.net/images/consent/bg_3840x2160.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
    box-shadow: inset 0 1rem 0 0 #990000;
    padding-top: 4rem;
    padding-bottom: 4rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

main p {
    line-height: 1.5rem;
}

footer {
    height: 10vh;
    position: relative;
}

footer p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #adadad;
    margin: 0;
}

#consent {
    max-width: 1000px;
    width: calc(100% - 32px);
    margin: 0;
    background-color: rgba(255,255,255,0.97);
    padding: 3rem;
}

#gdpr_consent {
    margin-top: 3rem;
}

button {
    display: block;
    margin: 0 auto;
    border: 0;
    background: #990000;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: "Gotham Narrow SSm A", "Gotham Narrow SSm B", Tahoma, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3rem;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    padding: .75rem 1.5rem;
    cursor: pointer;
    transition: 0.2s all ease;
  }

button:hover,
button:focus {
    background: #d60000;
}

button:focus {
}

button:active {
    transform: scale(0.99);
}

@media only screen and (min-width: 1032px) {
    #consent {
        width: 100%;
        background-size: 10%;
    }

    #logo img {
        left: 0;
    }
}