/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.buttonDigital {
		background-color: #ffbf00;
		/* background-color: #2020df; */
		border-radius: 1px;
		color: black;
		/* color: white; */
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-family: arial;
		font-size: 0.4em;
		margin: 2px 1px;
		cursor: pointer;
		width: 40px;
		float:left;
	}
} 

/* Small devices (portrait tablets and large phones, 600px and up) */ 
@media only screen and (min-width: 600px) {
	.buttonDigital {
		background-color: #ffbf00;
		/* background-color: #2020df; */
		border-radius: 1px;
		color: black;
		/* color: white; */
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-family: arial;
		font-size: 0.5em;
		margin: 2px 1px;
		cursor: pointer;
		width: 55px;
		float:left;
	}
} 

/* Medium devices (landscape tablets, 768px and up) */ 
@media only screen and (min-width: 768px) {
	.buttonDigital {
		background-color: #ffbf00;
		/* background-color: #2020df; */
		border-radius: 4px;
		color: black;
		/* color: white; */
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 0.7em;
		margin: 2px 1px;
		cursor: pointer;
		width: 70px;
		float:left;
	}
} 

/*  Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.buttonDigital {
		background-color: #ffbf00;
		/* background-color: #2020df; */
		border-radius: 5px;
		color: black;
		/* color: white; */
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 0.8em;
		margin: 4px 2px;
		cursor: pointer;
		width: 80px;
		float:left;
	}
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */ 
@media only screen and (min-width: 1200px) {
	.buttonDigital {
		background-color: #ffbf00;
		/* background-color: #2020df; */
		border-radius: 5px;
		color: black;
		/* color: white; */
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 0.9em;
		margin: 4px 2px;
		cursor: pointer;
		width: 90px;
		float:left;
	}
}


/* .button { */
    /* background-color: #2020df; */
	/* border-radius: 5px; */
    /* color: white; */
    /* text-align: center; */
    /* text-decoration: none; */
    /* display: inline-block; */
    /* font-size: 0.9em; */
    /* margin: 4px 2px; */
    /* cursor: pointer; */
	/* width: 90px; */
	/* float:left; */
/* } */

.buttonDigital:hover {
    background-color: #ffdf44;
    /* background-color: #13b6ec; */
}
