html, body {
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    overflow: hidden;
    font-family: "Open Sans";
}
body {
    background: url('img/bg.png') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
}
::selection {
	background:rgba(0,0,0,0);
}
::-moz-selection {
	background:rgba(0,0,0,0);
}
.player iframe {
    background-color: black;
    border-radius: 15px;
    position:absolute;
    top: 50%;
    left: 50%;
    margin-left:-320px;
    margin-top: -250px;
    transform: scale(.8);
    transition: transform 150ms ease-in-out;
}
.player iframe.scale {
    transform: scale(1);
    transition: transform 150ms ease-in-out;
}
.buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 640px;
    margin-left:-320px;
    margin-top: 65px;
}
.button {
    background-color: #F3705B;
    border-radius: 15px;
    box-shadow: 0px 5px 5px black;
    color:#2B3B4E;
    display: inline-block;
    font-size: 32pt;
    padding-top: 5px;
    padding-bottom: 10px;
    text-align: center;
    width:250px;
    transition: background-color 250ms ease-in-out;
}
.button.correct {
    background-color: #70F35B;
    transition: 150ms ease-in-out;
}
.button.wrong {
    background-color: #f32B30;
    transition: 150ms ease-in-out;
}
.button:hover, .icon:hover {
    cursor: pointer;
}
.button:hover {
    box-shadow: 0px 5px 5px #532;
}
#techno {
    float:right;
}
.icon {
    background: url('img/profile.png');
    background-size: contain;
    border-radius: 50px;
    box-shadow: 4px 4px 2px #433;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100%;
    left: 100%;
    margin-left: -150px;
    margin-top: -150px;
    z-index: 5;
}
.chat {
    background-color: white;
    border-radius: 15px;
    box-shadow: 4px 4px 5px #2B3B4E;
    color: #2B3B4E;
    font-size: 16pt;
    width: 630px;
    height: 180px;
    position: absolute;
    top: 100%;
    left: 100%;
    margin-left: -720px;
    margin-top: -370px;
    padding:10px 20px;
    z-index: 10;
}
.chatbg {
    width:100%;
    height:100%;
    background-color: rgba(1,1,1,.5);
    position:absolute;
    z-index: 1;
}
.link {
    font-size:12pt;
    margin: 3px 0;
    color: #51C1ED;
    cursor: pointer;
}
.link.first {
    margin-top: 12px;
}
.link:hover {
    color: #f32B30;
}