.flex {
    display: flex;
}
.flex .c1 {flex:1;}
.flex .c2 {flex:2;}
.flex .c3 {flex:3;}
.flex .c4 {flex:4;}
.flex .c5 {flex:5;}
.flex .c6 {flex:6;}
.flex .c7 {flex:7;}
.flex .c8 {flex:8;}
.flex .c9 {flex:9;}
.flex .c10 {flex:10;}
.btn {cursor: pointer;display: inline;border-radius: 3px;padding: 2px 10px;}
body {
    background: #fff;
    font-family: 'Poiret One', cursive;
    margin: 0;
    padding: 0;
}
.red {background: #ff0000}
.green {background: #008000}
.orange {background: #ff8000}
.purple {background: #400040}
.blue {background: #0000ff}
.cyan {background: #8000ff}

.nav_anim {
    z-index: 9999;
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    position: absolute;
    left: 0px;
    top: 0px;
}
.nav_anim i,
.nav_anim p {
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    font-size: 5em;
}
#bgimages {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    display: none
}
#wrapper {
    /*background: #060dfd;*/
    /* width: 99%; */
    /* margin: 10px 0 0 10px; */
    box-sizing: border-box;
}

#wrapper  a {
    position: relative;
    /*float: left;*/
    width: 32.5vw;
    height: 50vh;
    text-decoration: none;
    color: #fff;
    text-shadow: 1px 2px 5px #000;
    font-size: 50px;
    padding: 10px;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    z-index: inherit;
}
#wrapper  a:hover {
    box-shadow: 0px 0px 15px #000;
    -background: #fff;
    z-index: 999;
    top: -3px;
    opacity: 0.8;
}
#wrapper .right {
    float: left;
    width: 50%;
    min-width: 400px;
}
@media only screen and (max-width: 1200px) {
    .nav_anim i,
    .nav_anim p {
        font-size: 4em;
    }
}
@media only screen and (max-width: 1100px) {
    #wrapper .left {width: 100%;}
    #wrapper .left a {width: 50%;}
    #wrapper .right {width: 100%;}
    .nav_anim i,
    .nav_anim p {
        font-size: 4em;
    }
}
@media only screen and (max-width: 600px) {
    #wrapper .left a {width: 100%;}
}
.chat {
    height: 100vh;
    overflow-y: auto;
}
#chat {
    font-family: Arial;
    background: #fff;
    
}
#chat .cell {
    margin: 5px 2px;
}
#chat iframe {
    width: 100%;
    min-height: 300px;
}