@media (min-width: 1025px)
{
	.scrollUp
	{
		text-align: center;
		border: 4px solid orange;
	    background-color: yellow;
	    height: 350px;
	    width: 500px;
	    /*margin-left: 500px;
	    margin-top: 250px;*/
	}
}

@media (min-width: 768px) and (max-width: 1024px)
{
	.scrollUp
	{
		text-align: center;
		border: 3px solid orange;
	    background-color: yellow;
	    height: 350px;
	    width: 300px;
	    /*margin-left: 500px;
	    margin-top: 250px;*/
	}
}

@media (max-width: 767px)
{
	.scrollUp
	{
		text-align: center;
		border: 3px solid orange;
	    background-color: yellow;
	    height: 150px;
	    width: 300px;
	    /*margin-left: 500px;
	    margin-top: 250px;*/
	}
}