* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

@font-face {
  font-family: MarckScript;
  src: url(../add/fonts/MarckScript-Regular.ttf);
}
.gallery {
  opacity: 0.3;
}
@media (min-width: 1024px) {
  .gallery {
    margin: 20px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr 1fr 1fr 1200px;
  }
}
@media (max-width: 1023px) {
  .gallery {
    margin: 20px 20px 0 20px;
  }
  .gallery img {
    margin-bottom: 20px;
  }
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gallery .one {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}
.gallery .ten {
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 3;
}
.gallery .thirteen {
  grid-row-start: 5;
  grid-row-end: 6;
  grid-column-start: 1;
  grid-column-end: 3;
  height: 100%;
}
.gallery .fourteen {
  grid-row-start: 5;
  grid-row-end: 6;
  grid-column-start: 3;
  grid-column-end: 5;
  height: 100%;
}

.button-on-ext {
  transform: scale(0);
  width: 170px;
  height: 170px;
  border-radius: 50% 50%;
  background-color: white;
  position: fixed;
  top: -85px;
  left: calc(50% - 85px);
  z-index: 1;
}

.button-on-int {
  transform: scale(0);
  width: 150px;
  height: 150px;
  border-radius: 50% 50%;
  background-color: orange;
  position: fixed;
  top: -75px;
  left: calc(50% - 75px);
  z-index: 2;
}
.button-on-int a {
  display: block;
  text-align: center;
  line-height: 280px;
}
.button-on-int a img {
  width: 40%;
  height: 40%;
}

.button-big-ext {
  width: 400px;
  height: 400px;
  border-radius: 50% 50%;
  background-color: white;
  position: fixed;
  top: calc(50% - 200px);
  left: calc(50% - 200px);
  z-index: 3;
}

.button-big-int {
  width: 360px;
  height: 360px;
  border-radius: 50% 50%;
  background-color: orange;
  position: fixed;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
  z-index: 4;
  display: flex;
}
.button-big-int a {
  font-size: 70px;
  margin: auto;
  text-decoration: none;
  color: black;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: center;
}

.start-button-on:target ~ .button-on-ext, .start-button-on:target ~ .button-on-int {
  animation-name: appear-home-button;
  animation-delay: 1s;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes appear-home-button {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.start-button-on:target ~ .gallery {
  opacity: 1;
  transition: opacity 2s ease;
}

.start-button-on:target ~ .button-big-ext, .start-button-on:target ~ .button-big-int {
  animation-name: disappear-big-button;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes disappear-big-button {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

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