/* General */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Syne', 'Arial', sans-serif;
    font-size: 10px;
    line-height: 1.5em;
    font-weight: 500;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --accent: #E6007E;
}

.container {
    display: block;
    width: 100vw;
    padding: 48px 0 24px;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    width: 88%;
    margin: 0 auto;
}

@media screen and (min-width:768px) {
    .container {
        padding: 80px 0 40px;
    }
    .content {
        width: 80%;
    }
}

@media screen and (min-width:1280px) {
    .container {
        height: 100vh;
    }
    .content {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        width: 1180px;
    }
}

@media screen and (min-width:1400px) {
    .container {
        padding: 128px 0 64px;
    }
}

@media screen and (min-width:1800px) {
    .container {
        padding: 180px 0 128px;
    }
}

/* Content */

h1 {
    margin-bottom: 28px;
    font-size: 3.2em;
    line-height: 1.4em;
    font-weight: 700;
    text-transform: uppercase;
}

h1 span {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: var(--accent);
}

ul {
    margin-bottom: 28px;
    list-style: none;
}

li {
    font-size: 1.6em;
}

ul li.empty {
    visibility: hidden;
}

p {
    font-size: 1.4em;
    margin-bottom: 40px;
}

.logo {
    display: block;
    width: auto;
    height: 48px;
}

.background {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    height: 100vh;
    background-image: url(/bg-image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width:768px) {
    h1 {
        font-size: 4.8em;
        line-height: 1.2em;
        font-weight: 700;
        text-transform: uppercase;
    }
    .logo {
        height: 96px;
    }
    ul {
        margin-bottom: 60px;
    }
    li {
        font-size: 2em;
        margin-bottom: 4px;
    }
    p {
        font-size: 1.6em;
        margin-bottom: 80px;
    }
}

@media screen and (min-width:1280px) {
    .background {
        display: block;
    }
    ul {
        margin-bottom: 40px;
    }
    p {
        font-size: 1.6em;
        margin-bottom: 60px;
    }
}

@media screen and (min-width:1360px) {
    .background {
        display: block;
    }
    ul {
        margin-bottom: 60px;
    }
    p {
        font-size: 1.6em;
        margin-bottom: 80px;
    }
}