body {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-color: #003585;
    color: #FFF;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4em;
    padding: 20px;
}

@supports (background-image: url('../img/bg.avif')) {
    body {
        background-image: url('../img/bg.avif');
    }
}

header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.logo img {
    max-width: 471px;
    width: 80vw;
    height: auto;
    margin-left: -20px;
    margin-bottom: -20px;
}

.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 40px;
    background-color: rgba(0, 53, 133, 0.92);
}

.content > *:first-child {
    margin-top: 0;
}

h1, h2 {
    line-height: 1em;
}

h1, h2, a {
    color: #00b7ff;
}

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

.wa {
    vertical-align: middle;
    line-height: 1em;
}

footer {
    text-align: center;
    font-size: .8em;
    color: #999;
    text-shadow: 0 0 6px #003585, 1px 1px 0 #003585, -1px -1px 0 #003585;
}

.cc-window {
    position: fixed;
    margin: auto;
    vertical-align: middle;
    padding: 80px;
    font-size: 1.5em;
    line-height: 1.4em;
    text-align: center;
    box-shadow: 0 20px 40px 10px #0009;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.cc-compliance {
    display: block;
    text-align: center;
    margin: 10px auto 0;
}

.cc-btn {
    display: inline-block;
    margin: 20px auto 0;
    padding: 10px;
    color: #fff;
    background: #FFF;
    font-weight: 700;
    cursor: pointer;
}

.cc-invisible {
    display: none !important;
    visibility: hidden;
}

@media screen and (max-width: 767px) {
    body {
        padding: 10px;
    }
    .logo img {
        margin-left: -10px;
    }
    .content {
        padding: 20px;
    }
    .cc-window {
        padding: 20px;
        width: 80%;
    }
}