html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background: rgb(0, 0, 0);
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  color: white;
  cursor: url(cursor.png), auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery {
  display: block;
  position: sticky;
  z-index: 2;
  top: 0;
  width: 100%;
  left: 0;
}

.logo {
  width: 100%;
  max-width: 300px;
  margin: 20px;
  margin-top: 80px;
}

p {
  margin-top: 0;
  margin-bottom: 30px;
}

a {
  cursor: url(pointer.png), pointer;
}

.dates {
  max-width: 300px;
  margin-bottom: 30px;
}

.btn {
  display: block;
  background: black;
  display: inline-block;
  color: white;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
}

body {
  min-height: 100vh;
  position: relative;
  place-content: start center;
  background: linear-gradient(
    hsl(321, 100%, 87%),
    hsl(295, 100%, 77%),
    hsl(321, 100%, 87%)
  );
}

.g {
  width: 100%;
  display: flex;
  grid-auto-flow: column dense;
  place-content: start center;
  z-index: 1;
  transition: all 1s;
  position: absolute;
  margin-bottom: 30px;
  margin-top: 0px;
  flex-wrap: wrap;
  justify-content: center;
}

.container {
  width: min(100%, 800px);
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.center {
  display: flex;
  justify-content: center;
}

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

a {
  display: inline-block;
}

.g a {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  margin: 5px 20px;
  width: 5ch;
  color: black;
  text-decoration: none;
  box-sizing: border-box;
}

.link {
  transition: all 0.1s ease-in-out;
}
.g a:hover .link {
  background: blue;
  color: #eee;
  transform: rotate(10deg) scale(120%);
}

.g a:hover:nth-child(2n) .link {
  transform: rotate(-10deg) scale(120%);
}

video {
  cursor: url("pointer.png"), pointer;
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

video:hover {
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%);
}

.link {
  padding: 10px 20px;
  background-color: white;
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
}

.description {
  padding: 0% 6%;
}

.g a img {
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0) rotate(-5deg);
  z-index: -1;
  height: 90vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-clip-path: polygon(
    50% 0,
    50% 0,
    50% 100%,
    50% 100%,
    50% 0,
    50% 0,
    50% 100%,
    50% 100%
  );
  clip-path: polygon(
    50% 0,
    50% 0,
    50% 100%,
    50% 100%,
    50% 0,
    50% 0,
    50% 100%,
    50% 100%
  );
  transition: -webkit-clip-path 0.3s ease-in;
  transition: clip-path 0.3s ease-in;
  transition: clip-path 0.3s ease-in, -webkit-clip-path 0.3s ease-in;
}

.g a:nth-child(2n) img {
  transform: translate(-50%, 0) rotate(5deg);
}
.g a:hover img,
.g a img:hover {
  -webkit-clip-path: polygon(
    50% 0,
    0 0,
    0 100%,
    50% 100%,
    50% 0,
    100% 0,
    100% 100%,
    50% 100%
  );
  clip-path: polygon(
    50% 0,
    0 0,
    0 100%,
    50% 100%,
    50% 0,
    100% 0,
    100% 100%,
    50% 100%
  );
}

.gallery {
  margin-top: 30px;
}

.footer {
  padding: 30px;
}

.underline {
  text-decoration: underline;
}
