html { cursor: url("images/cursor.png"), default;}
a:hover, button:hover, input:hover {cursor: url("images/cursor_hover.png"), default;}

@font-face {
    font-family: 'PixelMix';
    src: url('fonts/pixelmix-webfont.woff2') format('woff2'),
         url('fonts/pixelmix-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body{	
	font-family: 'PixelMix', sans-serif;
	color: #ffd6a3;
	font-size: 12px;
}

::selection {
  background-color: #f9a534;  
  color: white;
}

.hypertext {
  color: #f9a534;
  text-decoration: none;
  cursor: url('images/cursor_hover.png'), auto;
}

.hypertext:hover {
  text-decoration: underline;
  cursor: url('images/cursor_hover.png'), auto;
}

.interruptor {
    width: 50px;
    height: 24px;
    background-color: #ffbd24;
    border-radius: 5px;
    position: relative;
	cursor: url('images/cursor_hover.png'), auto;
}

.interruptor::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 5px;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: 0.3s;
}

.interruptor.encendido::before {
    left: 28px;
}

/* this is for the neighbours buttons*/

.buttons{
	width: 88px;
	height: 31px;
	margin: 2px;
	justify-contet: column;
}

.buttons img {
	transition: transform 0.3s;  
}

.buttons:hover{
	transform: scale(1.1); 
	filter: drop-shadow( 0px 0px 10px rgba(240, 202, 62, 0.5)) brightness(130%);
}

