body {
  font-family: Papyrus, sans-serif;
  margin: 0;
  background-color: #00a0fd;
}

header {
  background-color: #3b8b05;
  padding: 15px;
}

nav a {
  color: rgb(255, 254, 253);
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.full-background {
  background-image: url('D:/Website.Unibit/Images/Screenshot 2025-12-03 220820.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

.content h1 {
  color: #333;
  margin-top: 0;
}

.content p {
  color: #666;
}

.container {
  padding: 20px;
}

h1 {
  color: #333;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #bbb;
}

.full-background-about {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-background-contact {
  background-image: url('D:/Website.Unibit/Images/D:\Website.Unibit\Images\iphone madnes.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.contact-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

.contact-content h1 {
  color: #333;
  margin-top: 0;
}

.contact-content p {
  color: #666;
  font-size: 18px;
}

footer {
  background-color: #277701;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;