body{
	 text-align: center;
	font-family: Arial, sans-serif;
	font-size: 15px;
	 text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4); 
	 color: black;
	 background-color: #C0C0C0;
	 font-weight: bold;

}

h1{
	text-transform: uppercase;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
.child {
	border-width: 10px;
	border-color: #99ceff;
	border-style: solid;
	border-radius: 25px;
  padding: 5px;
  background-color:  #66b3ff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	
}
}
@media only screen and (max-width: 768px) {

	.child {
	border-width: 10px;
	border-color: #99ceff;
	border-style: solid;
	border-radius: 25px;
	padding: 5px;
	background-color:  #66b3ff;
	}
}


.offer{
	cursor: pointer;
	width: 100%;
	border: 1px solid;
	border-radius: 8px;
	margin-top: : 10px;
	margin-bottom: 10px;
	display: block;
	padding: 10px;
	background-color: #E0E0E0;
	font-size: 14px;
	
	

}

p, h1{
	padding: 5px;
}

a{
	color: inherit; 
	text-decoration: none;
}

.offer:hover{
	background-color: #C7C7C7;
}

.offer, .child{
	box-shadow:0 1px 1px rgba(0,0,0,0.15),0 2px 2px rgba(0,0,0,0.15),0 4px 4px rgba(0,0,0,0.15),0 8px 8px rgba(0,0,0,0.15)
}


.loading {
  background-color: #4CAF50; /* Green background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 12px 16px; /* Some padding */
  font-size: 16px /* Set a font size */
}

.easy{
    display: inline-block;
    font-size: 15px;    
    background-color:#3f7f2e;
    border-radius: 4px;
    position: relative;
    color:  #fff;
    padding: 3px;
    font-weight: 600;

 animation-name: pulsare;
animation-duration: 2s;
animation-iteration-count: infinite;
  }

  @keyframes pulsare {
	0%, 100% {
    transform: scale(1,1);
}

50% {
    transform: scale(.9,1);
}
