@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Serif";
}

.canvas {
  background-color: rgb(0, 0, 0);
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.navbar {
  padding-top: 30px;
  width: 100%;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.328);
  position: absolute;
  z-index: 1;
}

.navbar ul {
  color: rgb(227, 227, 227);
  display: flex;
  list-style: none;
  width: 60%;
  justify-content: space-evenly;
}

li a {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 3px;
  color:rgb(255, 255, 255);
  text-decoration:none;
  transition: 0.3s;
  background-image: linear-gradient(180deg,rgb(0, 0, 0) 100%, rgb(0, 0, 0) 100%), linear-gradient(180deg,rgb(107, 196, 237) 100%, rgb(107, 196, 237) 100%);
  background-size: 100% 2px, 100% 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat, no-repeat;
}

li a:hover {
  background-size:
  0 2px,
  100% 2px;
}

.bigimage {
  background-image: url("/photography/IMG_0718300.JPEG");
  background-position:center;
  height: 900px;
  background-size: cover;
  position: relative;
}

.title {
  font-size: calc(50px + 3vw);
  width: fit-content;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(18, 71, 127, 0.418);
  color: white;
  padding: 10px;
  text-align:center;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity:0;
  }
  to {
    opacity: 1;
  }
}

.photos {
  grid-template-columns: repeat(12, [col-start] 1fr);
  padding: 10vw;
}

.photos img {
  padding: 50px;
}
