﻿@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue Bold.otf');
}

html {
    margin: 0;
    padding: 0;
	width:100%;
	height:100%;
}

body {   
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000000;
    color:#ffffff;
	width:100%;
	height:100%;
	
	font-family: 'BebasNeue';
	font-size:20px;
}

h1 {
	font-size:64px;
    color: #ff0000;
}

#app {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1024px;
    height: 540px;
}
#screens {
    position: relative;
    min-width: 1024px;
    min-height: 540px;
    width: 100%;
    height: 100%;
}

#photography {    
    width: 1024px;
    height: 540px;
    
    overflow: hidden;
    cursor: none;
    /*margin-top: 100px;*/
    /*display: inline-block;*/
}

#end {    
    width:100%;
}
#results img {
    width:calc(20% - 10px);
    height:auto;
    margin-right:5px;
    margin-left:5px;
    margin-bottom:5px;
}

#percent {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    width: 50px;
    height: 20px;
    font-size: 20px;
    font-family: 'BebasNeue';
}

#debug {
    position:absolute;
	top:0px;
	right:0px;
	max-height:20%;
    max-width:30%;
	color:#fff;
	background-color:rgba(100,0,0,0.3);
	overflow:auto;
    text-align:right;
	font-family:arial, sans;
	font-size:10px;
}

.btn {
    border:1px solid #ff0000;
    color:#ff0000;
    padding:20px;
    margin:30px;
    display:inline-block;
    opacity:1.0;

    transition:all 0.3s;
	
	cursor:pointer;
}
.btn:hover {
    opacity:0.8;
	transform: scale(1.5);
	transform-origin: 'top left';
	zoom:1.5;
}

.screen {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


