* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f4f6f8;
  color: #222;
}

/* Wrapper */
.projects-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
}

/* Main Card */
.projects-container {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Heading */
.projects-container h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 8px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* Projects List */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.projects-list a {
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  background: #f1f3f5;
  transition: all 0.3s ease;
}

.projects-list a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateX(6px);
}

/* Logo style */
.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 80px;          /* size of logo */
    height: 80px;
    border-radius: 50%;   /* makes it circular */
    object-fit: cover;    /* keeps image proportion */
    border: 3px solid #008b8b; /* optional border for style */
}


/* Responsive */
@media (max-width: 576px) {
  .projects-container {
    padding: 25px;
  }

  .projects-container h1 {
    font-size: 26px;
  }
}
