@font-face {
  font-family: Pacifico;
  src: url('./Pacifico-Regular.ttf'); 
}

@font-face {
  font-family: Allura;
  src: url('./Allura-Regular.ttf'); 
}

body {
  background-color: #F2EBE2;
}

.fullscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: url(../img/arena.jpg);
  background-size: cover;
}

.photo {
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  transition: transform 0.6s;
}

.side-back {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  display: table;
}

.side-back div {
  display: table-cell;
  vertical-align: middle;
  border: 1px solid #777;
  background: rgb(190,190,190);
  background: -moz-linear-gradient(0deg, rgba(190,190,190,1) 0%, rgba(238,238,238,1) 50%, rgba(190,190,190,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(190,190,190,1) 0%, rgba(238,238,238,1) 50%, rgba(190,190,190,1) 100%);
  background: linear-gradient(0deg, rgba(190,190,190,1) 0%, rgba(238,238,238,1) 50%, rgba(190,190,190,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bebebe",endColorstr="#bebebe",GradientType=1);
}

.side-back p {
  padding: 30px;
  color: #3F3BC4;
  font-family: Allura;
  font-size: 23px;
}

.photo.flipped .side-front {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.photo.flipped .side-back {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  transform: rotateY(0);
}

figure {
  width: 260px;
  position: absolute;
  padding: 8px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.6);
}

figure img {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
}

figure figcaption {
  font-family: allura;
  color: #2C26E4;
  font-size: 18px;
  margin-top: -10px;
  font-weight: bolder;
}

.navbar {
  position: fixed;
  bottom: 0;
  /* width: 100%; */
  padding: 10px;
  text-align: center;
  /* background-color: black; */
  z-index: 999;
}

button {
  background-color: transparent;
  padding: 10px 24px;
  color: #000;
  border: 1px solid black;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  cursor: pointer;
}

button:hover {
  background-color: #75430282;
  color: #fff;
}

#copyright {
  font-family: Consolas, Verdana, Arial, sans-serif;
  position: fixed;
  color: #555;
  text-decoration: none;
  bottom: 10px;
  right: 10px;
}

#copyright:hover {
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  #forkme {
    display: none;
  }

  #copyright {
    position: relative;
    display: block;
    text-align: center;
    right: 0px;
    bottom: 0px;
  }
}