BODY {
	margin-left: 10%;
	margin-right: 10%;
	text-align: center;
}

@import "https://fonts.googleapis.com/css?family=Arimo";

body {
	font-family: 'Arimo', sans-serif;
	font-size: 30px;
	letter-spacing: 1px;
	max-width: 700px;
	width: 100%;
	position: relative;
	display: inline-block;
	color: #465457;
}

.taskdiv{
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
    text-align: right;
}
.results
{
		margin-top: 5%;
	
}

.myinput{
    font:25px Trebuchet MS, Arial, Helvetica, Sans-Serif;
    color:#6B6B6B;
/* отключаем бордюры у инпутов и текстового поля */
    border: none;
/* закругляем углы полей ввода */
    -moz-border-radius:.3em;
    -webkit-border-radius:.3em;
    border-radius:.3em;		
    background-color: #F7F7F7;
    padding:3px;
/* добавляем внутренние тени у инпутов и текстового поля */
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.3);
    color: #5B5B5B;
/* устанавливаем ширину инпутов */
    width:50px;
    outline: 0 !important;
}


.mybutton {
  color: #ffffff; /* цвет текста */
  text-decoration: none; /* убирать подчёркивание у ссылок */
  user-select: none; /* убирать выделение текста */
  background: rgb(212,75,56); /* фон кнопки */
  padding: .7em 1.5em; /* отступ от текста */
  outline: none; /* убирать контур в Mozilla */
  border: 0 none transparent;
   font-size: 22px;
     
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;

}

.mybutton:hover {
	background: rgb(232, 95, 76);
} /* при наведении курсора мышки */
.mybutton:active {
	padding-top: 5px;
	background: rgb(152, 15, 0);
} /* при нажатии */

.mybutton:focus { 
    background: rgb(232, 95, 76);
}
.error {
  background-color: #f2aa9f;
}
.not_error {
  background-color: #b8f29f;
}

.mytimer{
    font:25px Trebuchet MS, Arial, Helvetica, Sans-Serif;
    color:#6B6B6B;
/* отключаем бордюры у инпутов и текстового поля */
    border: none;

/* устанавливаем ширину инпутов */
    width:150px;
    outline: 0 !important;
}


