.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 4px solid black;
}
.nav .logo {
  width: 50%;
}
.nav .logo span {
  color: blueviolet;
  font-weight: lighter;
}
.nav ul {
  width: 50%;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
}
.nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 2px;
  transition: 500ms;
  background-color: rgba(137, 43, 226, 0.267);
}
.nav ul li:hover {
  transform: translate(10px, 10px);
}

.card {
  width: 60%;
  text-align: center;
}
.card-title {
  font-size: 2rem;
  margin: 2rem 0;
  letter-spacing: 5px;
}
.card-body {
  padding: 1rem 0;
  font-size: 1.2rem;
}
.card-btns {
  margin: 1rem 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 5px 20px;
  text-align: center;
}

.btn {
  color: black;
  background-color: white;
  border-radius: 5px;
  border: 2px solid black;
  transition: 500ms;
  margin: 5px;
}
.btn:hover {
  color: white;
  background-color: black;
  border-radius: 5px;
}

.grid {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 240px;
}
.grid .cell {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.grid .cell:nth-child(1) {
  background-image: url(/assets/1.jpg);
}
.grid .cell:nth-child(2) {
  background-image: url(/assets/2.jpeg);
}
.grid .cell:nth-child(3) {
  background-image: url(/assets/3.jpeg);
}
.grid .cell:nth-child(4) {
  background-image: url(/assets/4.jpg);
}
.grid .cell:nth-child(5) {
  background-image: url(/assets/5.jpeg);
}
.grid .cell:nth-child(6) {
  background-image: url(/assets/6.png);
}

@media screen and (min-width: 600px) {
  .cell-tall {
    grid-row: span 2/auto;
  }

  .cell-wide {
    grid-column: span 2/auto;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}

body {
  background-color: white;
  background: linear-gradient(45deg, #19273c12 50%, transparent 50%);
}

section {
  min-height: 600px;
  padding: 1rem;
}

a {
  text-decoration: none;
  color: black;
}

#gallery h1 {
  margin: 1rem;
  font-size: 2rem;
}

footer {
  padding: 10px;
  text-align: center;
  background-color: black;
  color: white;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
}

@media (max-width: 800px) {
  .nav {
    display: block;
  }
  .nav .logo {
    width: 100%;
    text-align: center;
  }
  .nav ul {
    margin-top: 1rem;
    width: 100%;
  }

  section {
    min-height: 800px;
  }

  .card {
    width: 100%;
  }
}
@media (max-width: 400px) {
  canvas {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
