body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  /* 
  background-color: #f1f1f1;
  */
  background-color: #333333;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 40px;
  text-align: center;
  color: #333;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  text-align: center;
  color: #555;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


p {
  font-size: 24px;
  text-align: center;
  color: #555;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

a{
	color:#666;
 	text-decoration: none;
}

a:hover {
	color:#999;
 	text-decoration: none;
}

  a:visited {
    color:#ccc ;
  }






/* Media Query for Responsiveness */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
    padding: 15px;
	margin: 0 20px;  
  }
  h2 {
    font-size: 20px;
    padding: 10px;
  }
}
