.container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 0;
    }
}

@media (min-width: 550px) {
    .container {
        width: 80%
    }

    .column,
    .columns {
        margin-left: 4%
    }

    .column:first-child,
    .columns:first-child {
        margin-left: 0
    }

    .one.column,
    .one.columns {
        width: 4.66666666667%
    }

    .two.columns {
        width: 13.3333333333%
    }

    .three.columns {
        width: 22%
    }

    .four.columns {
        width: 30.6666666667%
    }

    .five.columns {
        width: 39.3333333333%
    }

    .six.columns {
        width: 48%
    }

    .seven.columns {
        width: 56.6666666667%
    }

    .eight.columns {
        width: 65.3333333333%
    }

    .nine.columns {
        width: 74%
    }

    .ten.columns {
        width: 82.6666666667%
    }

    .eleven.columns {
        width: 91.3333333333%
    }

    .twelve.columns {
        width: 100%;
        margin-left: 0
    }

    .one-third.column {
        width: 30.6666666667%
    }

    .two-thirds.column {
        width: 65.3333333333%
    }

    .one-half.column {
        width: 48%
    }

    .offset-by-one.column,
    .offset-by-one.columns {
        margin-left: 8.66666666667%
    }

    .offset-by-two.column,
    .offset-by-two.columns {
        margin-left: 17.3333333333%
    }

    .offset-by-three.column,
    .offset-by-three.columns {
        margin-left: 26%
    }

    .offset-by-four.column,
    .offset-by-four.columns {
        margin-left: 34.6666666667%
    }

    .offset-by-five.column,
    .offset-by-five.columns {
        margin-left: 43.3333333333%
    }

    .offset-by-six.column,
    .offset-by-six.columns {
        margin-left: 52%
    }

    .offset-by-seven.column,
    .offset-by-seven.columns {
        margin-left: 60.6666666667%
    }

    .offset-by-eight.column,
    .offset-by-eight.columns {
        margin-left: 69.3333333333%
    }

    .offset-by-nine.column,
    .offset-by-nine.columns {
        margin-left: 78%
    }

    .offset-by-ten.column,
    .offset-by-ten.columns {
        margin-left: 86.6666666667%
    }

    .offset-by-eleven.column,
    .offset-by-eleven.columns {
        margin-left: 95.3333333333%
    }

    .offset-by-one-third.column,
    .offset-by-one-third.columns {
        margin-left: 34.6666666667%
    }

    .offset-by-two-thirds.column,
    .offset-by-two-thirds.columns {
        margin-left: 69.3333333333%
    }

    .offset-by-one-half.column,
    .offset-by-one-half.columns {
        margin-left: 52%
    }
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    margin: 0;
}

h1 {
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -.1rem;
    color: #ffc4d5;
    margin: 0;
    font-weight: bold;
    font-style: italic;
}

p {
    margin-top: 0;
}

a {
    color: #1EAEDB;
}

a:hover {
    color: #0FA0CE;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    padding: 0 30px;
    color: #555;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: #333;
    border-color: #888;
    outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #FFF;
    background-color: #33C3F0;
    border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #FFF;
    background-color: #1EAEDB;
    border-color: #1EAEDB;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}

.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}

html {
    background-image: url("../img/bg2.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

header {
    color: #ffc4d5;
    line-height: 0.8em;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    background-color: #082236;
    text-align: center;
    border-bottom: 10px solid #ffc4d5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body {
    background-color: rgba(8, 34, 53, 0.6);
    height: 100vh;
}

.logo {
    float: left;
}

.shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -999;
    display: none;
}

.question {
    font-size: 1.7rem;
    color: #00a362;
}

.exitpoint {
    padding: 1rem 2rem;
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    margin-top: 1em;
    background-color: #FF4D80;
    color: #ffffff;
    width: 80%;
    text-align: center;
    margin-bottom: 1em;
}

.exitpoint:hover {
    color: white;
    background-color: #ff2261;
    transition: all 0.2s;
}

.tagline {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.you-won {
    box-sizing: border-box;
    width: 100%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
    border-width: 10px;
    border-style: solid;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    border-color: #ffc4d5;
    background-color: #082236;
    color: #fff;
    margin-top: 100px;
}

.you-won h2 {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 0.5em;
    color: #FFC4E2;
    text-align: center;
}

.you-won .tagline {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.guess {
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 3rem;
    color: white;
    padding: 1rem;
}

.guess .question {
    font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
}

.game {
    text-align: center;
}

.card {
    display: inline-block;
    width: 200px;
    height: 291px;
    margin: 20px;
    position: relative;
    border-radius: 20px;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600px;
}

.card .front,
.card .front1,
.card .front2,
.card .front3,
.card .front4,
.card .front5,
.card .front6,
.card .front7,
.card .front8 {
    background-size: 100% 100%;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
    width: inherit;
    height: inherit;
    border-radius: 1rem;
    background-repeat: no-repeat;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.card .front {
    background-image: url("../img/01.webp");
}

.card .front1 {
    background-image: url("../img/02.webp");

}

.card .front2 {
    background-image: url("../img/03.webp");

}

.card .front3 {
    background-image: url("../img/04.webp");

}

.card .front4 {
    background-image: url("../img/05.webp");

}

.card .front5 {
    background-image: url("../img/06.webp");

}

.card.flip .front {
    z-index: 900;
    border-color: #eee;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.card .back {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
    z-index: 800;
    width: inherit;
    height: inherit;
    background-image: url("");
    border: 0;
    background: #082236;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-179deg);
    transform: rotateY(-179deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card.flip .back {
    z-index: 1000;
    border-radius: 1rem;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

a.card.clicked {
    box-shadow: 0 0 10px 10px #ffc4d560;
    border-radius: 10px;
}

.you-guessed-it {
    text-transform: uppercase;
    display: none;
    font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    position: absolute;
    left: 0;
    right: 0;
    top: 300px;
    padding: 10px;
    max-width: 200px;
    font-size: 5rem;
    font-weight: bold;
    font-transform: uppercase;
    text-align: center;
    z-index: 1000;
    color: #fff;
    background-color: #082236;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 2px 2px 5px 0 #ffc4d5;
    transition: all 2s;
}

.you-guessed-it.up {
    top: 20%;
    opacity: 0;
}

.guess {
    text-align: center;
}

.guess .question {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: inline-block;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5);
    background-color: #082236;
    color: #fff;
}

.question .text {
    margin: 0;
    padding-bottom: 10px;
    font-weight: bold;
}

.question .circle {
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    width: 13px;
    height: 13px;
    border-color: #ffc4d5;
}

.question .circle.active {
    background-color: #ffc4d5;
}

.g1 .c2,
.g1 .c3,
.g2 .c3 {
    /* background-color: transparent; */
    background: #082236;

}

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

@media (max-width: 550px) {
    .guess {
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        font-size: 1.8rem;
        color: white;
        margin: 0;
        padding: 1rem;
    }

    .you-guessed-it {
        text-transform: uppercase;
        display: none;
        font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        position: absolute;
        top: 25%;
        width: 100%;
        font-size: 2.5rem;
        font-weight: bold;
        font-transform: uppercase;
        text-align: center;
        z-index: 1000;
        line-height: 1em;
        max-width: 300px;
        transition: all 2s;
    }

    .you-guessed-it.up {
        top: 5%;
        opacity: 0;
    }

    .card {
        margin: 5px;
        height: 250px;
        width: 145px;
    }

    header {
        padding: 5px 10px;
    }

    .container {
        padding: 0;
    }
}