html {
  background: url(images/fish-jumping-into-new-bowl.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  font-size: 100%;
}

.top-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 37vh;
}

.name {
  font-size: 50px;
  line-height: 1.11;
  font-weight: 300;
  letter-spacing: -.005em;
  font-family: 'Nunito', sans-serif;
}

/* bubble button css */
.button-wrapper{
  position: sticky;
  top: 10%;
  left: 50%;
  /* replacing this transform statement -> transform: translate(-50%, -50%); -> with a single -50% */
  transform: translate(-50%);
}

.button-two-wrapper{
  position: sticky;
  top: 20%;
  left: 50%;
  /* replacing this transform statement -> transform: translate(-50%, -50%); -> with a single -50% */
  transform: translate(-50%);
}

.button-three-wrapper{
  position: sticky;
  top: 30%;
  left: 50%;
  /* replacing this transform statement -> transform: translate(-50%, -50%); -> with a single -50% */
  transform: translate(-50%);
}

a{
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-family: sans-serif;
  text-decoration: none;
  color: #0966c2;
  border: 2px solid #0966c2;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 1s;
}

a span{
  position: relative;
  z-index: 2;
}

a:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: all 1s;
}

a:hover{
  color: #0966c2;
}

a:hover:after{
  width: 100%;
}



/* CSS overrides for mobile devices starts */

@media only screen and (max-device-width: 415px) and (min-height:750px)
{

.name {
  font-size: 110px;
  line-height: 1.11;
  font-weight: 300;
  letter-spacing: .025em;
  font-family: 'Nunito', sans-serif;
}

/* bubble button css */
.button-wrapper{
  position: sticky;
  top: 10%;
  left: 50%;
  /* replacing this transform statement -> transform: translate(-50%, -50%); -> with a single -50% */
  transform: translate(-50%);
}

.button-two-wrapper{
  position: sticky;
  top: 20%;
  left: 50%;
  /* replacing this transform statement -> transform: translate(-50%, -50%); -> with a single -50% */
  transform: translate(-50%);
}

.button-three-wrapper{
  position: sticky;
  top: 30%;
  left: 50%;
  /* replacing this transform statement -> transform: translate(-50%, -50%); -> with a single -50% */
  transform: translate(-50%);
}


a{
  display: block;
  width: 420px;
  height: 90px;
  line-height: 90px;
  font-size: 70px;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  color: #07427c;
  border: 2px solid #07427c;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 1s;
}


/* CSS overrides for mobile devices ends */





