@import url("https://fonts.googleapis.com/css2?family=Monofett&family=Poiret+One&display=swap");

body {
  background-color: black;
  color: white;
  font-family: "Poiret One", sans-serif;
}

h1 {
  text-align: center;
  font-family: "Monofett", monospace;
}

h1 a {
  font-size: 75px;
  text-decoration: none;
  color: white;
}

h2 {
  color: limegreen;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
}

nav ul a {
  text-decoration: none;
  color: white;
  transition-property: color;
  transition-duration: 250ms;
}

nav ul a:hover {
  color: limegreen;
}

.svg-gallery {
  display: flex;
  justify-content: space-around;
  margin-top: 10%;
}

.svg-gallery img {
  max-width: 20%;
}

.main-content-block {
  display: flex;
  justify-content: space-around;
  margin: 5% 0;
}

.main-content-block img,
.main-content-block div {
  width: 45%;
}

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.gallery-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 5%;
}
