@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html {
  overflow: hidden;
  background: url("../images/bg.png") no-repeat center top fixed;
  background-size: cover;
}
@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.character {
  height: 100%;
  width: auto;
  overflow-x: hidden;
  position: fixed;
  bottom: 0px;
  overflow-x: hidden;
  -webkit-animation: vibrate-1 5s ease-out infinite alternate-reverse both;
  animation: vibrate-1 6s ease-in-out infinite alternate-reverse both;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.flex-center {
  display: flex;
  justify-content: left;
  align-items: center;
  z-index: 4;
}

.social-links {
  display: flex;
  flex-direction: column;
  margin-left: 2vh;
  margin-top: 2vh;
}

.social-btn {
  gap: 1vh;
  cursor: pointer;
  height: 50px;
  width: 200px;
  color: black;
  border-radius: 10px;
  font-family: "Open Sans", "sans-serif";
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  background: white;
  margin: 5px;
  padding-left: 2vh;
  transition: 150ms;
}

.social-btn:hover {
  transform: scale(1.1);
  background: rgb(32, 118, 158);
  color: white;
}

a:link,
a:visited {
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .social-btn {
    width: 48px;
    padding-left: 1vh !important;
  }
  .social-btn span {
    width: 0;
    overflow: hidden;
  }
  .flex-center {
    justify-content: center;
  }
}
@media screen and (max-width: 730px) {
  .character {
    height: 90%;
  }
  .social-btn {
    width: 50px;
  }
  .social-btn span {
    width: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 620px) {
  .container {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .character {
    height: 80%;
  }
}

@media screen and (max-width: 450px) {
  .character {
    height: 60%;
  }
}
#apple {
  fill: black;
}
#gogame {
  fill: #364f6b;
}
#apple:hover,
#gogame:hover {
  fill: white;
}
