/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn hodddddw to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: linear-gradient(to bottom, #788a94 25%, #7fa395 75%);
  background-color: gray; 
  color: black;
  font-family: Verdana;
}
.span1 {
  background: linear-gradient(to bottom, #6fb3e3 25%, #6fe3b5 75%);
  border-radius: 10px;
  background-color: cyan; 
 border-style: groove ridge;
  border-width: 3px;
  border-color: #1d3340;
  text-align: center;
  
}
.myButton {
	box-shadow:inset 0px 1px 0px 0px #e184f3;
	background:linear-gradient(to bottom, #c123de 25%, #a20dbd 75%);
	background-color:#c123de;
	border-radius:6px;
	border:1px solid #a511c0;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Trebuchet MS;
	font-size:60px;
	font-weight:bold;
	padding:15px 48px;
	text-decoration:none;
	text-shadow:0px 1px 0px #9b14b3;
}
.myButton:hover {
	background:linear-gradient(to bottom, #a20dbd 25%, #c123de 75%);
	background-color:#a20dbd;
	transform: translateY(10px);
}
.myButton:active {
	position:relative;
	top:1px;
}

.span2 {
  background: linear-gradient(to bottom, #6fb3e3 25%, #6fe3b5 75%);
  border-radius: 10px;
  background-color: cyan;
  border-style: groove ridge;
  border-width: 3px;
  border-color: #1d3340;
}
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: linear-gradient(to bottom, #7d6b60 25%, #8a5562 75%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  text-align: center;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 10px 0;
  color: white;
}
.blog {
    display: grid;
      background: linear-gradient(to bottom, #6fb3e3 25%, #6fe3b5 75%);
  border-radius: 10px;
  background-color: cyan; 
 border-style: groove ridge;
  border-width: 3px;
  border-color: #1d3340;
  text-align: center;
}