
body,
html {
  background-color: rgb(231, 170, 38);
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  font-family: 'Poppins', 'Arial', sans-serif;
  color: rgb(21, 56, 21);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.card {
  position: relative;
  width: 300px;

  padding: 20px;

  text-align: center;
}

.card h6 {
  position: absolute;
  top: 10px;
  left: 95px;
}

.card p {
  font-size: 14px;
}

a {
  text-decoration: none;
}

button {
	margin-bottom: 10px;
  background-color: transparent;
  border: 1px solid green;
  padding: 0.5rem;
  border-radius: 20px;

}

a:hover {
  color: green;
	
}

@media (min-width: 600px) {
	.card { 
	width: 100%;
	}
  h4 {
	width: 100%;
    font-size: 3rem;
  }
	button {
	width: 200px;
	}	
	
	h5 {
		font-size: 2rem;}
	
	.card p {
		font-size: 20px; }
	
	img {
	 width: 70%;
	}

}


.icons a {
	 
    margin: 30px 10px;
	  
    font-size: 24px;
    color: #333;
    text-decoration: none;
  }

.icons a:hover {
    color: #0077ff;
  }


