@font-face {
  font-family: 'MyWebFont';
  src: url('../font/GIGI.woff2') format('woff2'),
       url('../font/GIGI.woff') format('woff'),
       url('../font/GIGI.TTF') format('truetype');
}
h3{
  font-family: 'MyWebFont'!important;
  font-size: 3em!important;
}
a {
  font-weight: bold;
}
body {
  background-image: url('../img/photo/splatt2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size:contain;
}
.headerbuffer{
  height: 30%;
}
.buffer{
  height: 200px;
}
@media (max-width: 1200px) {
  .content{
    margin-bottom: 100px!important;
  }
}
@media (max-width: 800px) {
  .content{
    margin-bottom: 150px!important;
  }
  .ht{
    margin-top: 10px!important;
  }
}
  @media (max-width: 500px) {
    .content{
      /* margin-bottom: 350px!important; */
    }
    .ht{
      margin-top: 20px!important;
    }
}
@media (max-width: 350px) {
  .content{
    margin-bottom: 450px!important;
  }
  .ht{
    margin-top: 20px!important;
  }
}
@media (min-width: 1440px) {
  .characters{
    padding-right: 0px!important;
    padding-left: 0px!important;
    margin-left: -45px;
    margin-right: -45px;
  }
  .houseTherapyImg{
    margin-top: -40px;
  }
  .aboutMe{
    /* position: fixed!important; */
    bottom: 0;
    /* height: auto; */
    transition: all 1s ease;
  }
}

.bufferpadding{
  margin-left: 25px;
}

.button-class{
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 12px;
}

.centered {
  /* position: absolute; */
  /* top: 50%; */
  left: 50%;
  width: 100%;
  /* transform: translate(-50%, -50%); */
  text-align: center;
}
.ht{
  margin-top: -25px;
}
.therapys{
  position:absolute;
  visibility:hidden;
}
/* .container:hover .musicOverlay {
  opacity: 1;
} */
.m-info{
  padding: 0 5px;
  display: none;
  overflow: hidden;
}
.mobile-button{
  background-color: Transparent;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.dcontent{
  font-size: 1.5em;
}
.info{
  font-size: 1.4em;
}

.name{
  font-size: 1.6em;
  font-weight: bold;
}
.degrees{
  font-size: 1em;
  font-style: italic;
  color: grey;
}
.contact{
  font-size: 1.4em;
}
.content{
  height: 130px;
  transition: all 1s ease;
}
.grow:hover {
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.bounce:hover {
  transition: all 0.4s ease;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 1.5s infinite;
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.shake:hover {
  animation: shake 2s;
  animation-iteration-count: infinite;
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.float:hover {
  /* transition: all 0.4s ease; */
  -moz-animation: float 2s infinite;
  -webkit-animation: float 2s infinite;
  animation: float 1.5s infinite;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}
@-moz-keyframes float {
  0%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float {
  0%,100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.pulse:hover {
  -moz-animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
@-moz-keyframes pulse {
    0% { -moz-transform: scale(1); }
	50% { -moz-transform: scale(1.1); }
    100% { -moz-transform: scale(1); }
}
@-o-keyframes pulse {
    0% { -o-transform: scale(1); }
	50% { -o-transform: scale(1.1); }
    100% { -o-transform: scale(1); }
}
@keyframes pulse {
    0% { transform: scale(1); }
	50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
