body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #262626;
} 

.container {
  background-color: #262626;
  display:block;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin-top: 100px;

}

.section {
  margin-bottom: 20px;
}

/* CSS for Section Headings */
.section h2 {
  color: #fff;
  margin-bottom: 20px; /* Add some space below the heading */
  padding-bottom: 5px; /* Add a small padding at the bottom */
  margin-left: 10px;
  font-size: 21px; /* Font size */
  font-weight: bold; /* Font weight */
}


.button {
  margin: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  background-color: #4da3ff;
  color: white;
  cursor: pointer;
  border-radius: 23px;
  transition: background-color 0.3s ease;
}
.button a{
text-decoration: none;
color: white;
}
.game-button:hover {
  background-color: #b380ff;
}


/* Web Development Buttons */
.web-development {
  background-color: #4da3ff; /* Sky blue */
}

.web-development:hover {
  background-color: #007bff; /* Darker shade of sky blue on hover */
}

/* General Programming Buttons */
.general-programming {
  background-color: #ff9933; /* Orange */
}

.general-programming:hover {
  background-color: #cc6600; /* Darker shade of orange on hover */
}

/* Database Buttons */
.database {
  background-color: #31e281; /* Light blue */
}

.database:hover {
  background-color: #0b853e; /* Darker shade of light blue on hover */
}
