
html, body {
    min-height: 100%;
}

body {
    display: flex;
    flex-flow: column nowrap;
    font-family: Montserrat, sans-serif;
    background: url("/images/wheelOfFortune/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4em 6em 2em 6em;
    box-sizing: border-box;
}

header .badge {
    color: #fff;
    background: #25a7e5;
    padding: .6em 1.4em;
    border-radius: 0.9em;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

main {
    display: flex;
    flex: 1 1 auto;
    text-align: center;
    margin: 20px 0;
}

main > div.left{
    width: 60%;
}

main > div.right {
    width:40%;
    overflow: hidden;
}

main > div.right > img{
    max-width: 75%;
    transform-origin: center top;
    margin-top: 11px;
    margin-right: 25%;
}

.visual {
    max-width: 100%;
    margin: -36px auto 22px;
}

.visual img {
    max-width: 95%;
}

.visual-m {
    display:none;
}

.visual-m .top img{
    width: 16em;
    margin-top: 45px;
}

.visual-m .bottom img{
    width: 30em;
    margin-top: 44px;
}


.main-content {
    background-image: linear-gradient(90deg,rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 90%);
    color: #fff;
    font-size: 26px;
    font-weight: 400;
}

.main-content p {
    max-width: 62%;
    margin: .5em auto 1em;
    padding: 1em 1.6em;
}

.call-to-action {

    display: flex;
    cursor: pointer;
    line-height: 30px;
}

.call-to-action > * {
    display: block;
}

.call-to-action .logo {
    width: 50%;
    display: block;
    padding-top: 8px;
}

.call-to-action .text {
    width: 50%;
    display: block;
}

.call-to-action .text div {
    width: 150px;
    color: white;
    background: #25a7e5;
    border-radius: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    padding: 0.2em .6em;
    display: block;
    margin: 0 auto;
    margin-top: 28px;
}

footer {
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 6em;
    background: #023495;
    margin-top: 185px;
}

footer .warning {
    text-align: end;
}

@media (max-width: 999px){

    main {
        padding: 0;
    }

    header{
        padding-bottom: 0px;
    }

    .visual-m{
        display:block;
    }
    .visual{
        display:none;
    }

    main > div.right{
        display: none;
    }

    main > div.left{
        width: 100%;
    }

    main > .left > .visual{
        margin-top: -60px;
    }

    footer{
        margin-top: 16px;
    }

    .visual-m .top img{
        width: 30%;
    }

    .visual-m .bottom img{
        width:100%;
        margin-top: -50px;
    }
}

@media (max-width: 599px) {
    header {
        padding: 1.3em 1.5em;
    }

    header .logo {
        height: 28px;
    }

    .main-content p {
        font-size: 20px;
    }

    .visual-m .top img{
        width: 40%;
        margin-top: 0;
    }

    .visual-m .bottom img{
        margin-top: -10px;
    }

    footer {
        margin-top: 16px;
    }

    footer, footer .left, footer .right {
        display: block;
    }

    footer .left > *, footer .right > * {
        margin: 0 0 1em;
        text-align: center;
    }
}