
/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* Heading styles */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
  text-align: center;
}

h2, h3 {
  color: #34495e;
  margin-top: 20px;
}

.majors {
  border: 0px solid black;
  margin: 1rem;
  padding: 1rem 1rem;
}

.cyb {
    display: inline-block;
    background-color: #967AA1; /* Set the background color */
    padding: 20px 20px; /* Add padding around the text */
    border-radius: 10px; /* Apply rounded corners with a radius of 15px */
}

.sd {
    display: inline-block;
    background-color: #FBB13C; /* Set the background color */
    padding: 20px 20px; /* Add padding around the text */
    border-radius: 15px; /* Apply rounded corners with a radius of 15px */
}

.ai {
    display: inline-block;
    background-color: #6E95C4; /* Set the background color */
    padding: 20px 20px; /* Add padding around the text */
    border-radius: 15px; /* Apply rounded corners with a radius of 15px */
}

.voting {
    background-color: lightpink;
    font-weight: bold;
}




/* Project details */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.meta-item {
  flex: 1 1 200px;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Description and content */
.project-description {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .project-meta {
    flex-direction: column;
  }
}
