#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#projects {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 3% auto;
  max-width: 1200px;
  padding: 2%;
  border: 1px solid #333;
  border-radius: 10px;
  background-color: rgba(249, 249, 249, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  #projects {
    margin: 10px;
    padding: 10px;
  }
}
#projects .header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#projects .header .logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
#projects .header h1 {
  margin: 0;
  flex-grow: 1;
  font-size: 1.5em;
}
#projects .header #back-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #0366d6;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
#projects .header #back-button:hover {
  background-color: #024ea4;
}
#projects h2 {
  color: black;
  font-size: 1.3em;
}
#projects #project-list {
  list-style: none;
  padding: 0;
}
#projects #project-list li {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  transition: background-color 0.3s;
}
#projects #project-list li:hover {
  background-color: white;
}
#projects #pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#projects #pagination button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #0366d6;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
#projects #pagination button:hover {
  background-color: #024ea4;
}
#projects #pagination button:disabled {
  background-color: #439afc;
  cursor: not-allowed;
}/*# sourceMappingURL=styles.css.map */