
* {
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'Marsha-Bold';
    src: url('Marsha-Bold.woff2') format('woff2'),
         url('Marsha-Bold.woff') format('woff');
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Marsha-Bold';
  font-size: x-large;
  background-image: url('static2.png');
  overflow-x: hidden;
}


p {
  font-family: Helvetica;
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
}

/*background animation*/

.bg {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.blue { 
  background-image: url('blue.png');
  z-index: -1;}
.light {  
  background-image: url('light.png');
  z-index: 999;}
.blur {
  background-image: url('blur.png');
  z-index: -2;}

.fade
{
  animation: fadeInOut 12s infinite;
  opacity: 0;
}

@keyframes fadeInOut
{
  0%{ opacity:0;}
  50%{ opacity:1;}
  100%{ opacity:0;}
}

/*sections*/

.top {
  z-index: 0;
  margin-top: 20px;
  margin-left: 3%;
  height: auto;
  width: 95%;
  position:relative;
  display: table;
  table-layout: fixed;
}

.top span {
  display: table-cell;
  text-align: center;
  font-size: 30px;

}

.top span:first-child {
    text-align: left;
}

.top span:last-child {
    text-align: right;
}

.top a:visited {
  
  color: blue; 
}

.container{
  margin: 3%;
}

.mid {
  position:relative;
}

.bottom {
  position:relative;
  bottom: 10px;
  left: 3%;
}

.bottom p{
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
}

.bot {
  position:fixed;
  bottom: 10px;
  left: 3%;
}

.bot p {
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
}

.button {
  display: inline-block;
  width: 88px;
  height: 31px;
  overflow: hidden;
  margin: 4px; 
}

.bottom a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*images*/

.cursor-game1 {
  height: 120px; width: 100px;
  z-index: 14;
  right: 150px;
  bottom: 60px;
  position: fixed;
}

.cursor-game2 {
  height: 120px; width: 100px;
  z-index: 13;
  right: 50px;
  bottom: 140px;
  position: fixed;
}

.guestbook{
   width:88px;
   height:31px;
}

.collabs {
  width: 220px;
  height:45px;
}

/* image animations*/

.rotate {
  transition: transform 0.5s ease;
}

.rotate:hover {
  animation: rotate 1s infinite;
}

@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.shake {
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.shake:hover {
  animation: shake 1s infinite;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 768px) {

  h1 {
    font-size: 20px;
  }
  
}