.box {
   
    -webkit-transition: width 2s, height 2s, background-color 2s, -webkit-transform 2s;
    transition: width 1s, height 1s, background-color 2s, transform 1s;
	font-size:40px;
}

.box:hover {
  
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


.button {
        background-color: #000000;
        color: #FFFFFF;
        padding: 10px;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin:10px;
		display:inline-block;
		font-size:20px;
    }
    
    .small-btn {
        width: 50px;
        height: 25px;
    }
    
    .medium-btn {
        width: 70px;
        height: 30px;
    }
    
    .big-btn {
        width: 60px;/*140pxWidth 90pxHeight*/
        height: 8vh;
		font-size:100%;
    }
	
	
	
	
	::-webkit-input-placeholder {
   text-align: center;
   color:green;
   font-size:30px;
}

:-moz-placeholder { /* Firefox 18- */
   text-align: center;  
   color:green;
}

::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;  
   color:green;
}

:-ms-input-placeholder {  
   text-align: center; 
   color:green;
}







/*check boxes*/
.checkboxTwo {
    width: 135px;
    height: 60px;
    background: #333;
    margin: 5px 60px;

    border-radius: 50px;
    position: relative;
	
}


.checkboxTwo:before {
    content: '';
    position: absolute;
    top: 19px;
    left: 14px;
    height: 2px;
    width: 100px;
    background: #111;
}

.checkboxTwo label {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;

    transition: all .5s ease;
    cursor: pointer;
    position: absolute;
    top: 9px;
    z-index: 1;
    left: 12px;
    background: #ddd;
}

.checkboxTwo input[type=checkbox]:checked + label {
    left: 84px;
    background: #26ca28;
	
}

.checkboxTwo input[type=checkbox]{
    opacity:0;
	
}

input[type=text]{
   background-color: #000000;
        color: #FFFFFF;
        
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
       
		display:inline-block;
		font-size:20px;
	
}

.fontDisplay{
	font-size:40px;
}