body{    
    margin: 0;
    padding: 0;
    color: #715C04;
    font-family: 'Montserrat', sans-serif;
    background-image: url(../images/background_tile.gif);
    background-color: #90d2eb;
    height: 100%;
    font-size: 100%;
}

a{
    color: #fff;
    text-decoration: none;
}
a.cta{
    color: #715C04;
    text-decoration: underline;
}

p{
    font-size: 1.4rem;
}

#game{
    width: 100vw; 
    max-width: 414px;
    max-height: 100vh;
    margin: 0 auto;
}


/*
#orientation_img{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -368px;
}
@media screen and (orientation:landscape) {
    #orientation_img{
        display:block !important;
    }
    #game{
        display:none !important;
    }
}
*/
/*
.button {
    margin:0 auto;
    display: block;
    width: 200px;
    padding: 20px;
    background: #F4F4FB;
    color: #2F848E;
    text-align: center;
    text-decoration: none;
}
*/
.lightbox-container {
    display: none;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    text-align: center;
    height: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.get-in-touch{
    margin: 20px auto 0 auto;
}

/* when the url has #example in this css is applied */
.lightbox-container:target {
    top: 0;
    height: 100%;
    display: table;
}

.lightbox-container .lightbox {
    display: table-cell;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.lightbox-container .content {
    display: block;
    margin: auto;
    /*padding: 20px 60px 20px 20px;*/
    background-color: #fff;
    /*min-height: 50%;*/
    position: relative;
    overflow: auto;
    border-radius: 20px;
}

header{
    background-color: #C7F0FF;
    font-weight: 700;
}
header.pink{
    background-color: #FFE6E6;
}

header h1{
    margin: 0;
    padding-top: 40px;
    font-size: 1rem;
}
header p{
    margin: 0;
    font-size: 2rem;
}
header img{
    margin-left: 10%;
    margin-top: 20px;
    display: block;
}
.share-buttons, 
.contact-footer{
    padding: 50px 0;
    margin: 0 auto;
}

.contact-footer{
    text-align: left;
    padding: 0px 20px 30px 30px;
}


.share-buttons .share-button{
    margin: 20px;
    display: inline-block;   
}

.share-buttons .share-button iframe{
    margin-bottom: -5px;  
}

.share-button .email-button{
    display: inline-block;
    font-family: Helvetica, Arial, sans-serif;
    border-radius: 4px;
    padding: 1px 10px 1px 9px;
    background-color: #E57204;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
.email-button i {
    margin-top: 4px;
    height: 18px;
    width: 18px;
    position: relative;
    display: inline-block;
    background: transparent 0 0 no-repeat;
    line-height: 26px;
    /*background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg…-.038-1.693%202.558-1.847%204.778-4.15%206.532-6.774z%22%2F%3E%3C%2Fsvg%3E);*/
}
.email-button span {
    margin-left: 4px;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    font-size: 13px;
    line-height: 26px;
}

.lightbox-container .close-button {
    display: block;
    margin: auto;
    height: 0;
    overflow: visible;
    text-align: right;
    z-index: 5001;
    cursor: default;
}

.lightbox-container .close-button,
.lightbox-container .content {
    width: 90%;
    max-width: 400px;
}


/* modal close/X  button */

.lightbox-container .close-button::after {
    content: "\00D7";
    display: inline-block;
    position: relative;
    right: 10px;
    top: -10px;
    z-index: 5002;
    color: #715C04;
    font-weight: bold;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 60px;
    font-weight: normal;
    line-height: 1.3;
    margin: 0;
    /* background-color: #71C2D0; */
    cursor: pointer;
}


/* fullscreen background/close button */

.lightbox-container .close-button::before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background-color: #000000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lightbox-container .close-button:hover, 
.lightbox-container .close-button:focus,
.lightbox-container .close-button:visited,
.lightbox-container .close-button:active{
    color: #715C04;
}
/*
.lightbox-container .close-button:hover, 
.lightbox-container .close-button:focus{
    background-color: #fff;
}*/

/* display background when modal open */

.lightbox-container:target .close-button::before {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}