/* Variables */

:root {
    /* Primary Pallette */
    --posterscope-primary-red: rgb(245, 8, 4);
    --posterscope-primary-light-green: rgb(52, 136, 136);
    --posterscope-primary-dark-green: rgb(28, 72, 72);

    /* Secondary Pallette */
    --posterscope-secondary-green: rgb(34, 186, 187);
    --posterscope-secondary-blue: rgb(158, 248, 238);
    --posterscope-secondary-grey: rgb(255, 240, 236);

    /* Basics */
    --posterscope-basic-black: rgb(0, 0, 0);
    --posterscope-basic-white: rgb(248, 248, 248);
}

/* Fonts */
@font-face {
    font-family: 'Avenir-Next';
    src: url('../fonts/f5d4f93b-454a-43e0-9ae8-7f1271b5c0fd.woff2') format('woff2'), url('../fonts/72556e8c-c677-48d8-81ff-3eb8fc50033b.woff') format('woff');
}

/* Main Content */

body {
    font-family: 'Avenir-Next', sans-serif;
    color: var(--posterscope-basic-white);
    background-color: var(--posterscope-basic-black);
    height: 100vh;
    width: 100vw;
    margin: 0;
    position: fixed;
    overflow: hidden;
    background-image: url('/static/images/background-image.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;   
    background-size: cover;
}

.posterscope__green-overlay {
    background-color: var(--posterscope-primary-light-green);
    /* opacity: .9; */
    height: 100vh;
    width: 30vw;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -999;
}

.posterscope__circle-overlay {
    background-color: var(--posterscope-primary-dark-green);
    opacity: .7;
    height: 40vw;
    width: 40vw;
    border-radius: 50%;
    position: absolute;
    
    margin: 0;
    top: 50%;
    left: 15vw;
    transform: translateY(-50%);
}

.posterscope__content {
    width: 30%;
    position: absolute;
    z-index: 999;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.posterscope__logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 20%;
    margin: 30px;
    margin-left: 5%;
}

.terms-and-conditions {
    position: absolute;
    bottom: 0;
    margin: 30px;
    margin-left: 5%;
}

.content {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    position: absolute;
    z-index: 999;
    margin: 0;
    top: 50%;
    left: 15vw;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 100px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 20px 0;
}

address {
    font-style: normal;
}

/* Grid */

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: 20%;
    margin-left: 20%;
}

/* Typography */

h1 {
    font-size: 4vw;
}

.posterscope__period {
    height: 1vw;
    width: 1vw;
    background-color: var(--posterscope-primary-red);
    border-radius: 50%;
    display: inline-block;
    /* border: 2px solid var(--posterscope-basic-black); */
    margin-left: 5px;
}

a {
    text-decoration: none;
    color: var(--posterscope-basic-white);
    position: relative;
    /* text-underline-offset: 5px; */
}

a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--posterscope-primary-red);
    transform-origin: bottom left;
    transition: transform 0.15s ease-out;
}
  
a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Media Queries */

@media (min-width: 768px) {
}

@media (max-width: 992px) {
    .container {
        padding: 0;
        left: 0;
    }

    .posterscope__green-overlay {
        height: 40vh;
        width: 100vw;
    }

    .posterscope__circle-overlay {
        height: 80vw;
        width: 80vw;
        left: 10vw !important;
        top: 40%;
    }

    .posterscope__logo {
        width: 50%;
    }

    .terms-and-conditions {
        margin: 10px;
    }

    .posterscope__content {
        width: 60vw;
        top: 40%;
        left: 24%;
    }

    .posterscope__content > ul {
        font-size: 2.5vw;
    }

    h1 {
        font-size: 9vw;
    }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}