/* General Body Styling */
body {
  margin: 0;
  background: #111;
  font-family: sans-serif;
  color: #fff;
}

/* Header Section */
header {
  text-align: center;
  padding: 20px;
  background-color: #222;
}

header .logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

/* Portfolio Description Section */
.portfolio-description {
  padding: 20px;
  background-color: #1b1b1b;
  color: #ddd;
  text-align: center;
}

.portfolio-description p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 15px 0;
}

/* Contact Section */
.contact {
  padding: 20px;
  background-color: #222;
  color: #ddd;
  text-align: center;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 10px 0;
}

.contact a {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 1.2em;
}

.contact a:hover {
  text-decoration: underline;
}

/* Grid and Modal Styles */
.grid {
  column-count: 4;
  column-gap: 10px;
  padding: 10px;
}

.grid img,
.grid video {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  max-width: 100%;
  max-height: 100%;
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-body {
  padding: 20px;
  color: white;
}

button {
  padding: 10px 20px;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: gray;
}
