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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: rgb(62, 62, 62);
  color: white;
  font-family: Garamond, serif;
}

header {
  top: 0;
  right: 0;
  position: fixed;
  height: 50px;
  z-index: 4;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
header ul {
  display: none;
  width: 100%;
  list-style-type: none;
}
header ul li {
  height: 33%;
  background: rgb(230, 230, 230);
  font-size: 1.2rem;
  font-weight: lighter;
}
header ul li a {
  color: black;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
}
header ul li:hover {
  background: rgb(189, 189, 189);
}
header svg {
  cursor: pointer;
  width: 50px;
  height: 50px;
}
header svg rect.a {
  fill: white;
}
header svg rect.b {
  fill: gray;
}
header.active {
  width: min(100%, 600px);
  height: min(80%, 200px);
  animation: normal header-activate ease-in-out 0.5s;
  /*svg{
      animation: normal svg-activate ease-in-out 0.5s;
      fill: rgb(97, 97, 97);
  }*/
}
header.active ul {
  display: block;
}

header ul li.current {
  background: rgb(108, 108, 108);
}

@keyframes header-activate {
  0% {
    width: 50px;
    height: 50px;
  }
  50% {
    width: min(100%, 600px);
    height: 50px;
  }
  100% {
    width: min(100%, 600px);
    height: min(80%, 200px);
  }
}
/*@keyframes svg-activate{
    0%{
        fill: white;
    }
    100%{
        fill: rgb(97, 97, 97);
    }
}*/
h1, h3, h2 {
  text-align: center;
}

.bigyo {
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.bigyo img {
  width: 40%;
}
.bigyo img + img {
  transform: rotateY(180deg);
}
.bigyo.bottom img {
  transform: rotateX(180deg);
}
.bigyo.bottom img + img {
  transform: rotateZ(180deg);
}

div#videos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

video {
  width: 80%;
}

#mesterdiv {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

div#cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 20px;
}

div.card {
  color: black;
  margin-top: 30px;
  width: min(400px, 95%);
  border: 1px solid black;
  background: white;
  box-shadow: 7px 6px;
}
div.card span {
  display: inline-block;
  margin-top: 5px;
  width: 100%;
  text-align: center;
}
div.card span a {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  aspect-ratio: 1/1;
}
div.card span a img {
  width: 100%;
}
div.card > img {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2.5%;
  display: block;
}

#mainpics {
  display: flex;
  flex-direction: row;
}

.pics {
  width: 33%;
}

.pic {
  width: 100%;
}

#overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(48, 48, 48, 0.772);
  z-index: 5;
}
#overlay img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#overlay svg {
  position: fixed;
  top: 20px;
  right: 20px;
  width: min(5vmin, 50px);
  height: min(5vmin, 50px);
  fill: white;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */