/* Basic Reset and Body Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
}

/* Developer Profiles Section */
main#team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.developer {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
  width: 290px;
  margin: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.second-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.developer.minimized {
  width: 190px;
  padding: 0.5rem;
  box-shadow: none;
}

/* Double Circle Photo Effect with Zoom */
.profile-photo-container,
.profile-photo-container-small {
  display: inline-block;
  background: linear-gradient(45deg, #4a90e2, #e8f4fa);
  padding: 5px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #fff;
}

.profile-photo-container-small .profile-photo-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.zoom-effect:hover {
  transform: scale(1.1);
}

/* Contact Information */
.contact-info {
  text-align: center;
  background: linear-gradient(45deg, #d9ecf2, #c9e2f2);
  padding: 1.5rem;
  margin-top: 2rem;
}

.contact-info h2 {
  color: #4a90e2;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: bold;
}

.contact-info a {
  color: #4a90e2;
  text-decoration: none;
}
/* Header */
header {
  background-color: rgba(74, 144, 226, 0.8);
  color: white;
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.header-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* Adds spacing between the logo and the title */
}
.logo {
  width: 212px;
  height: 55px;
}

h1 {
  font-size: 2rem;
  margin: 0; /* Ensures no extra spacing */
  color: white;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensures it stays in the background */
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire viewport */
}

