@import url('https://fonts.googleapis.com/css?family=Archivo+Narrow:400,700');

html{
	width: 100%;
	height: 100%;
}

body{
	margin: 0px;
	padding: 0px;
	background: #ffffff;
	color: #000000;
	font-family: 'Arial Narrow','Helvetica Neue', 'Helvetica','Arial', 'sans-serif';
	height: 100vh;
	width: 100%;
    
	/*font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
       

}

textarea, select, input, button { outline: none; }

.intro{
	font-weight: 700;
	font-size: 2vh;
	text-align: center;
	margin-bottom: 105px;
}

.terminal{
	padding-top: 20vh;
	width: 100%;
	position: relative;
}

input[type=text] {
    width: 88%;
    padding: 2vh 0px 2vh 0px;
    box-sizing: border-box;
    border: 0px solid #000000;
    background: #3c3c3b;
    font-size: 10vh;
    font-family: 'Arial Narrow', 'Archivo Narrow', 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
    font-weight: 700;
    text-align: center;
    color: #000000;
    word-wrap: break-word;
    position: relative;
    display: block;
    margin: 0 auto;
}

input[type=text]:focus {
    border: 0px solid #000000;

}

textarea{
	width: 88%;
	height: 140px;
    padding: 10px;
    padding-top: 23px;
    box-sizing: border-box;
    border: 0px solid #000000;
    background: #eeeeee;
    font-size: 10vh;
    font-family: 'Archivo Narrow','Arial Narrow','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
    font-weight: 700;
    text-align: center;
    color: #000000;
    word-wrap: break-word;
    position: relative;
    display: block;
    margin: 0 auto;
    resize: none;
}

input[type=text]::-webkit-input-placeholder{
	color: #000000;
   
}

div.info{
	text-align: center;
	margin-top: 30px;
	color: #000000;
	font-size: 2vh;
    font-weight: 700;
}

.success{
	color: #000000;
}

.warning{
	color: #000000;
}

.feed{
	position: absolute;
	bottom: 20px;
	text-align: center;
	width: 100%;
}
.feed a{
	color: #000000;
	text-decoration: none;
	font-size: 10px;
	transition: color 0.3s;
}
.feed a:hover{
	color: #000000;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	.terminal{
		width: 100%;
		padding-top: 30px;
	}
	
	textarea {
		font-size: 65px;
		height: 240px;
		padding-top: 10px;
	}
	
	.intro{
		font-size: 2vh;
		margin-bottom: 25px;
	}
}



