* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

* img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

* a {
  cursor: pointer;
  text-decoration: none;
  color: #d0d0d0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: scroll;
  overflow-x: hidden;
  height: auto;
  background: black;
}

body .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  color: #d0d0d0;
  background: url("/customPhotos/main page.jpg");
  background-size: 100% 100vh;
  font-family: 'Merriweather', serif;
}

body nav {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  overflow: hidden;
}

body nav img {
  -webkit-transition: all ease 5s;
  transition: all ease 5s;
  position: absolute;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

body nav .cloud1 {
  top: 10%;
  left: 0%;
  -webkit-animation-name: floatCloud1;
          animation-name: floatCloud1;
  height: 85%;
  opacity: .6;
  z-index: 0;
}

body nav .cloud2 {
  bottom: -10%;
  right: 0%;
  height: 55%;
  -webkit-animation-name: floatCloud2;
          animation-name: floatCloud2;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  opacity: .4;
  z-index: 0;
}

body nav .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  height: 20%;
}

body nav .top.row {
  z-index: 100;
}

body nav .top.row .logo {
  margin-top: -1rem;
  margin-left: -3rem;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
  cursor: pointer;
  width: 10rem;
  height: 10rem;
  background: url(/customPhotos/logo.png);
  background-size: contain;
  border-radius: 50%;
}

body nav .top.row .logo:hover {
  cursor: pointer;
  -webkit-animation-name: smallJump;
          animation-name: smallJump;
  -webkit-animation-duration: .35s;
          animation-duration: .35s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background: url(/customPhotos/myWorlBlu.png);
  background-size: contain;
  border-radius: 50%;
}

body nav .top.row .mobileUl {
  display: none;
  font-size: 1.5rem;
  margin-top: .25rem;
  margin-right: 0rem;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

body nav .top.row .mobileUl li {
  display: none;
}

body nav .top.row .mobileUl .hamburgers {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 2rem;
  width: 4rem;
}

body nav .top.row .mobileUl .hamburgers div {
  width: 65%;
  height: 10%;
  background: white;
  border-radius: 1rem;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

body nav .top.row .mobileUl .hamburgers:hover div {
  background: #59cdf3;
}

body nav .top.row .mobileUl .hamburgers:hover .one {
  width: 35%;
  background: #59cdf3;
}

body nav .top.row .mobileUl .hamburgers:hover .three {
  background: #59cdf3;
  width: 55%;
}

body nav .top.row ul {
  margin-top: -2.5rem;
  margin-right: -2.5rem;
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: auto;
  list-style: none;
}

body nav .top.row ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
  width: auto;
  height: 100%;
  margin-left: 1rem;
  padding: .1rem;
  font-weight: bold;
  letter-spacing: .1rem;
}

body nav .top.row ul li:hover {
  color: #59cdf3;
  cursor: pointer;
  -webkit-animation-name: smallJump;
          animation-name: smallJump;
  -webkit-animation-duration: .35s;
          animation-duration: .35s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

body nav .middle.row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body nav .middle.row h1 {
  text-shadow: 0 0 1rem black;
  font-family: 'Merriweather', serif;
  z-index: 1;
}

body nav .middle.row h1 span {
  font-family: merr;
  font-size: 2rem;
  padding: .25rem;
  font-size: 4rem;
  color: white;
  font-weight: bold;
}

body nav .middle.row h1 .x {
  color: white;
  font-size: 3rem;
}

body nav .middle.row p {
  text-shadow: 0 0 1rem black;
  z-index: 1;
  letter-spacing: .05rem;
  margin: 2rem;
  width: 60%;
}

body nav .middle.row p span {
  font-weight: bold;
  color: #59cdf3;
}

body nav .bottom.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body nav .bottom.row h1 {
  margin: 1rem;
}

body nav .bottom.row h1 span {
  color: #59cdf3;
}

body .work.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: url("/customPhotos/background2.jpg");
  background-size: 100% 100vh;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

body .work.section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all ease 1.5s;
  transition: all ease 1.5s;
  width: 100%;
  height: 20%;
  margin: 2rem;
}

body .work.section .row img {
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation-name: smallJump;
          animation-name: smallJump;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  overflow: '';
  opacity: 1;
}

body .work.section .row .two {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

body .work.section .row .three {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

body .work.section .row .four {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
}

body .work.section .row .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: auto;
  width: auto;
}

body .work.section .row .wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  border-radius: .25rem;
  z-index: 1;
  height: 10rem;
  width: 14rem;
  opacity: .7;
  -webkit-box-shadow: 0 0 2rem #59cdf3;
          box-shadow: 0 0 2rem #59cdf3;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

body .work.section .row .wrapper .container:hover {
  -webkit-box-shadow: 0 0 2rem white;
          box-shadow: 0 0 2rem white;
  opacity: 1;
  background-size: 105% 105%;
}

body .work.section .row .wrapper .projectOne {
  background: url("/customPhotos/previewCH.png");
  background-size: 100% 100%;
}

body .work.section .row .wrapper .projectTwo {
  background: url("/customPhotos/sitePreviewMJS.png");
  background-size: 100% 100%;
}

body .work.section .row .wrapper .projectThree {
  background: url("/customPhotos/sitePreviewSG.png");
  background-size: 100% 100%;
}

body .work.section .row .wrapper .projectFour {
  background: url("/customPhotos/sitePreviewPS.png");
  background-size: 100% 100%;
}

body .work.section .top {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

body .work.section .top h1 {
  font-size: 2rem;
  text-shadow: 0 0 .5rem black;
}

body .work.section .top img {
  height: 15rem;
  opacity: .7;
}

body .work.section .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .work.section .middle p {
  z-index: 100;
  width: 55%;
  text-shadow: 0 0 1rem black;
}

body .work.section .middle p a {
  cursor: pointer;
  text-decoration: underline;
  color: #59cdf3;
}

body .work.section .middle p span {
  color: #59cdf3;
}

body .work.section .middle img {
  z-index: 1;
  -webkit-animation: none;
          animation: none;
  position: absolute;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  opacity: 1;
  width: 20rem;
  height: 20rem;
}

body .work.section .middle .moon {
  z-index: 0;
  -webkit-animation-name: rotater;
          animation-name: rotater;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  top: 10%;
  right: 45%;
  height: 18rem;
  width: 18rem;
  left: 120%;
}

body .work.section .bottom {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  height: 55%;
  z-index: 99;
}

body .work.section .bottom * {
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

body .work.section .bottom img {
  height: 15rem;
  opacity: .5;
}

body .work.section .bottom #workSecWrapper {
  height: 9rem;
  width: 13rem;
  cursor: pointer;
}

body .work.section .bottom #workSecWrapper .container {
  height: 100%;
  width: 100%;
}

body .work.section .bottom #workSecWrapper .container * {
  color: black;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

body .work.section .bottom #workSecWrapper .container .inner {
  border-radius: 1rem;
  display: none;
  height: 90%;
  width: 90%;
  border: none;
  -webkit-box-shadow: 0 0 2rem #59cdf3;
          box-shadow: 0 0 2rem #59cdf3;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
  background: black;
  opacity: .7;
}

body .work.section .bottom #workSecWrapper .container .inner button {
  height: auto;
  width: auto;
  padding: .25rem;
  border-radius: .5rem;
  background: #59cdf3;
  color: black;
}

body .work.section .bottom #workSecWrapper .container .inner button a {
  text-decoration: none;
  color: black;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

body .work.section .bottom #workSecWrapper:hover .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  color: black;
}

body .work.section .bottom #workSecWrapper:hover .inner i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
  font-size: 1.5rem;
  text-shadow: 0 0 1rem #59cdf3;
}

body .work.section .bottom #workSecWrapper:hover .inner i:hover {
  font-size: 1.75rem;
  text-shadow: 0 0 1rem white;
  color: #59cdf3;
}

body .work.section .bottom #workSecWrapper:hover .inner button {
  background: white;
  height: auto;
  width: auto;
}

body .work.section .bottom #workSecWrapper:hover .inner button:hover {
  background: #59cdf3;
}

body .work.section .bottom #workSecWrapper:hover .inner button a {
  color: black;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

body .work.section .bottom .wrapper {
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

body .work.section .bottom .wrapper.one {
  -webkit-transition-delay: .125s;
          transition-delay: .125s;
}

body .work.section .bottom .wrapper.two {
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

body .work.section .bottom .wrapper.three {
  -webkit-transition-delay: .375s;
          transition-delay: .375s;
}

body .work.section .bottom .wrapper.four {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

body .experience.section {
  background: url("./customPhotos/starryNight.png");
  overflow: hidden;
  position: relative;
}

body .experience.section h1 {
  font-size: 2rem;
}

body .experience.section .row {
  width: 100%;
  height: 27%;
}

body .experience.section .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

body .experience.section .top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 40%;
  height: auto;
  z-index: 100;
}

body .experience.section .top .container span {
  color: #59cdf3;
}

body .experience.section .top .container p {
  font-size: 1rem;
  width: 80%;
}

body .experience.section .top .container h1 span {
  font-size: 2rem;
  text-shadow: 0 0 1rem #59cdf3;
}

body .experience.section .top .design {
  font-size: 1rem;
}

body .experience.section .topper {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .experience.section .bottom {
  position: relative;
  width: 100%;
}

body .experience.section .bottom img {
  opacity: none;
  -webkit-transition: all ease;
  transition: all ease;
  position: absolute;
  width: 100%;
  height: 350px;
  bottom: 0;
  left: 0;
  -webkit-animation-name: oceanWaveOne;
          animation-name: oceanWaveOne;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

body .experience.section .bottom .water2, body .experience.section .bottom .water1 {
  width: 120vw;
  margin-left: -5%;
  margin-bottom: -5rem;
  -webkit-animation-name: oceanWaveTwo;
          animation-name: oceanWaveTwo;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 3;
}

body .experience.section .bottom .water1 {
  margin-bottom: -3rem;
  -webkit-animation-name: oceanWaveOne;
          animation-name: oceanWaveOne;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 1;
}

body .experience.section .bottom .bouy {
  -webkit-animation-name: oceanWaveTwoX;
          animation-name: oceanWaveTwoX;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  height: 16rem;
  width: 9rem;
  z-index: 2;
}

body .about.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: url("./customPhotos/background3.jpg");
  background-size: 100% 100%;
  position: relative;
  overflow: visible;
}

body .about.section .waterBreak {
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 100%;
  top: -15%;
  z-index: 10;
  height: 250px;
  -webkit-animation-name: oceanWaveTwoW;
          animation-name: oceanWaveTwoW;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

body .about.section h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 11;
  height: 20%;
  width: 100%;
}

body .about.section p {
  padding-top: 2rem;
  height: 30%;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  width: 65%;
}

body .about.section p span {
  color: #59cdf3;
}

body .about.section .bubbleContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  min-height: 35%;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

body .about.section .bubbleContainer .bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  height: 8rem;
  width: 8rem;
  background: url("./customPhotos/bubble.png");
  background-size: 100% 100%;
  opacity: .5;
  cursor: pointer;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  -webkit-animation-name: oceanWaveTwoX;
          animation-name: oceanWaveTwoX;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 2;
}

body .about.section .bubbleContainer .bubble img {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  height: 3rem;
  width: 3rem;
}

body .about.section .bubbleContainer .bubble:hover {
  width: 8.5rem;
  height: 8.5rem;
  opacity: 1;
  -webkit-box-shadow: 0 0 1rem white;
          box-shadow: 0 0 1rem white;
}

body .about.section .bubbleContainer .bubble:hover img {
  height: 150%;
  width: 150%;
}

body .about.section .bubbleContainer .two {
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
  background: url("./customPhotos/bubble3.png");
  background-size: 100% 100%;
}

body .about.section .bubbleContainer .three {
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  background: url("./customPhotos/bubble4.png");
  background-size: 100% 100%;
}

body .about.section .bubbleContainer .four {
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  background: url("./customPhotos/bubble2.png");
  background-size: 100% 100%;
}

body .contact.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: url("./customPhotos/background4.jpg");
  background-size: 100% 100vh;
  position: relative;
}

body .contact.section h1 {
  z-index: 100;
}

body .contact.section p {
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 100;
  font-size: .75rem;
  height: .1rem;
  overflow: visible;
}

body .contact.section p span {
  color: #59cdf3;
}

body .contact.section .jellyF, body .contact.section .jellyF2 {
  position: absolute;
  height: 7rem;
  width: 7rem;
  top: 15%;
  left: 5%;
  -webkit-animation-name: oceanWaveTwoJ;
          animation-name: oceanWaveTwoJ;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: .6;
  z-index: 99;
  -webkit-transition: all 40s;
  transition: all 40s;
}

body .contact.section .jellyF2 {
  z-index: 99;
  position: absolute;
  height: 5rem;
  width: 5rem;
  left: 85%;
  top: 30%;
  -webkit-animation-duration: 6.5s;
          animation-duration: 6.5s;
  -webkit-transition: all 50s;
  transition: all 50s;
}

body .contact.section .jellyF3 {
  z-index: 99;
  position: absolute;
  -webkit-animation-name: oceanWaveTwoJ;
          animation-name: oceanWaveTwoJ;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 8rem;
  width: 8rem;
  left: 25%;
  top: 70%;
  -webkit-animation-duration: 6.5s;
          animation-duration: 6.5s;
  -webkit-transition: all 60s;
  transition: all 60s;
}

body .contact.section .jellyF4 {
  position: absolute;
  -webkit-animation-name: oceanWaveTwoJ;
          animation-name: oceanWaveTwoJ;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 99;
  height: 8rem;
  width: 8rem;
  left: 65%;
  top: 55%;
  -webkit-animation-duration: 6.5s;
          animation-duration: 6.5s;
  -webkit-transition: all 70s;
  transition: all 70s;
}

body .contact.section .contactForm {
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  background: none;
  width: 65%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 30%;
  color: #59cdf3;
}

body .contact.section .contactForm * {
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  padding: .5rem;
}

body .contact.section .contactForm input {
  width: 50%;
  background: none;
  border: none;
  border-bottom: .125rem solid white;
  color: white;
}

body .contact.section .contactForm textarea {
  width: 50%;
  height: auto;
  background: none;
  color: white;
  border: none;
  border-bottom: .125rem solid white;
}

body .contact.section .contactForm .end {
  color: #59cdf3;
  width: auto;
  cursor: pointer;
}

body .siteStartUp.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: black;
  position: fixed;
  top: 0%;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  z-index: 100;
  -webkit-animation-name: loadIn2;
          animation-name: loadIn2;
  -webkit-animation-duration: 6.5s;
          animation-duration: 6.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

body .siteStartUp.section img {
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
  -webkit-animation-name: leaveSmoothly;
          animation-name: leaveSmoothly;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.mainText {
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.contactLinks {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  z-index: 100;
  width: 35%;
  height: .1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: visible;
}

.contactLinks .wplink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: .5;
  height: auto;
  width: auto;
  overflow: visible;
  -webkit-animation-name: oceanWaveTwoX;
          animation-name: oceanWaveTwoX;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.contactLinks .wplink * {
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}

.contactLinks .wplink img {
  height: 3.5rem;
  width: 3.5rem;
  overflow: visible;
}

.contactLinks .wplink i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 3.3rem;
  width: 3.3rem;
  font-size: 3.5rem;
  color: black;
  border: 0.1rem solid #cdcdcd;
  border-radius: 50%;
  background: #cdcdcd;
  overflow: visible;
}

.contactLinks .wplink:hover {
  opacity: 1;
}

.contactLinks .wplink:hover img {
  height: 3.8rem;
  width: 3.8rem;
}

.contactLinks .wplink:hover i {
  font-size: 4rem;
  height: 3.8rem;
  width: 3.8rem;
}

.contactLinks .last {
  background: #cdcdcd;
  border-radius: 50%;
}

.contactLinks .last img {
  height: 3.5rem;
  width: 3.5rem;
}

@-webkit-keyframes loadIn {
  0% {
  }
  25% {
    opacity: .75;
    top: 35%;
    left: 42%;
    height: 15rem;
    width: 15rem;
  }
  50% {
    top: 35%;
    left: 42%;
    height: 10rem;
    width: 10rem;
    opacity: 1;
  }
  75% {
    top: 35%;
    left: 42%;
    height: 10rem;
    width: 10rem;
    opacity: 1;
  }
  100% {
    height: 10rem;
    width: 10rem;
    top: 35%;
    left: 42%;
    opacity: 0;
  }
}

@keyframes loadIn {
  0% {
  }
  25% {
    opacity: .75;
    top: 35%;
    left: 42%;
    height: 15rem;
    width: 15rem;
  }
  50% {
    top: 35%;
    left: 42%;
    height: 10rem;
    width: 10rem;
    opacity: 1;
  }
  75% {
    top: 35%;
    left: 42%;
    height: 10rem;
    width: 10rem;
    opacity: 1;
  }
  100% {
    height: 10rem;
    width: 10rem;
    top: 35%;
    left: 42%;
    opacity: 0;
  }
}

@-webkit-keyframes loadIn3 {
  0% {
    opacity: 0;
    height: 15rem;
    width: 15rem;
    top: 35%;
    left: 42%;
  }
  25% {
    opacity: .75;
    top: 35%;
    left: 42%;
    height: 15rem;
    width: 15rem;
  }
  50% {
    top: 35%;
    left: 42%;
    height: 6rem;
    width: 6rem;
    opacity: 1;
  }
  75% {
    top: 35%;
    left: 42%;
    height: 6rem;
    width: 6rem;
    opacity: 1;
  }
  100% {
    height: 6rem;
    width: 6rem;
    top: 0%;
    left: 0%;
    opacity: 0;
  }
}

@keyframes loadIn3 {
  0% {
    opacity: 0;
    height: 15rem;
    width: 15rem;
    top: 35%;
    left: 42%;
  }
  25% {
    opacity: .75;
    top: 35%;
    left: 42%;
    height: 15rem;
    width: 15rem;
  }
  50% {
    top: 35%;
    left: 42%;
    height: 6rem;
    width: 6rem;
    opacity: 1;
  }
  75% {
    top: 35%;
    left: 42%;
    height: 6rem;
    width: 6rem;
    opacity: 1;
  }
  100% {
    height: 6rem;
    width: 6rem;
    top: 0%;
    left: 0%;
    opacity: 0;
  }
}

@-webkit-keyframes loadIn2 {
  0% {
    opacity: 1;
    z-index: 100;
    height: 100vh;
    width: 100%;
  }
  75% {
    opacity: 1;
    z-index: 100;
    height: 100vh;
    width: 100%;
  }
  90% {
    z-index: 100;
    opacity: 0;
    height: 100vh;
    width: 100%;
  }
  99% {
    z-index: 100;
    opacity: 0;
    height: 0vh;
    width: 0%;
  }
  100% {
    z-index: 0;
    opacity: 0;
    height: 0vh;
    width: 0%;
  }
}

@keyframes loadIn2 {
  0% {
    opacity: 1;
    z-index: 100;
    height: 100vh;
    width: 100%;
  }
  75% {
    opacity: 1;
    z-index: 100;
    height: 100vh;
    width: 100%;
  }
  90% {
    z-index: 100;
    opacity: 0;
    height: 100vh;
    width: 100%;
  }
  99% {
    z-index: 100;
    opacity: 0;
    height: 0vh;
    width: 0%;
  }
  100% {
    z-index: 0;
    opacity: 0;
    height: 0vh;
    width: 0%;
  }
}

@-webkit-keyframes smallJump {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0rem;
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
    margin-bottom: .5rem;
  }
  80% {
    margin-bottom: 0rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    margin-bottom: .25rem;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    margin-bottom: 0rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes smallJump {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 0rem;
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
    margin-bottom: .5rem;
  }
  80% {
    margin-bottom: 0rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    margin-bottom: .25rem;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    margin-bottom: 0rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes rotater {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    right: 45%;
  }
  50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    right: 40%;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    right: 45%;
  }
}

@keyframes rotater {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    right: 45%;
  }
  50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    right: 40%;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    right: 45%;
  }
}

@-webkit-keyframes smallArrowPoint {
  0% {
    margin-top: .25rem;
  }
  25% {
    margin-top: 0rem;
  }
  50% {
    margin-top: .25rem;
  }
  75% {
    margin-top: 0rem;
  }
  100% {
    margin-top: .25rem;
  }
}

@keyframes smallArrowPoint {
  0% {
    margin-top: .25rem;
  }
  25% {
    margin-top: 0rem;
  }
  50% {
    margin-top: .25rem;
  }
  75% {
    margin-top: 0rem;
  }
  100% {
    margin-top: .25rem;
  }
}

@-webkit-keyframes floatCloud1 {
  0% {
    margin-top: 0rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0rem;
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    margin-top: .25rem;
    margin-left: 1.5rem;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-top: 0rem;
    margin-left: 0rem;
  }
}

@keyframes floatCloud1 {
  0% {
    margin-top: 0rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0rem;
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    margin-top: .25rem;
    margin-left: 1.5rem;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-top: 0rem;
    margin-left: 0rem;
  }
}

@-webkit-keyframes floatCloud2 {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    margin-top: 0rem;
    margin-right: 0rem;
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-top: .1rem;
    margin-right: 3rem;
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    margin-top: 0rem;
    margin-right: 0rem;
  }
}

@keyframes floatCloud2 {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    margin-top: 0rem;
    margin-right: 0rem;
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-top: .1rem;
    margin-right: 3rem;
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    margin-top: 0rem;
    margin-right: 0rem;
  }
}

@-webkit-keyframes appearSmoothly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appearSmoothly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes leaveSmoothly {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes leaveSmoothly {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes heartBeat {
  0% {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  50% {
    opacity: .3;
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
}

@keyframes heartBeat {
  0% {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  50% {
    opacity: .3;
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
}

@-webkit-keyframes oceanWaveOne {
  0% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    margin-left: -5%;
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0%;
  }
  100% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    margin-left: -5%;
  }
}

@keyframes oceanWaveOne {
  0% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    margin-left: -5%;
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0%;
  }
  100% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    margin-left: -5%;
  }
}

@-webkit-keyframes oceanWaveTwo {
  0% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
    margin-left: -1.5%;
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0%;
  }
  100% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
    margin-left: -1.5%;
  }
}

@keyframes oceanWaveTwo {
  0% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
    margin-left: -1.5%;
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-left: 0%;
  }
  100% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
    margin-left: -1.5%;
  }
}

@-webkit-keyframes oceanWaveTwoX {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
    left: 45%;
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    margin-left: 0%;
    margin-bottom: .5rem;
    left: 46%;
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
    left: 45%;
  }
}

@keyframes oceanWaveTwoX {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
    left: 45%;
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    margin-left: 0%;
    margin-bottom: .5rem;
    left: 46%;
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
    left: 45%;
  }
}

@-webkit-keyframes oceanWaveTwoJ {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    margin-left: 0%;
    margin-bottom: .5rem;
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
  }
}

@keyframes oceanWaveTwoJ {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    margin-left: 0%;
    margin-bottom: .5rem;
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-left: -1.5%;
    margin-bottom: -.25rem;
  }
}

@-webkit-keyframes oceanWaveTwoW {
  0% {
    top: -16.5%;
    opacity: 1;
  }
  50% {
    top: -17.5%;
    opacity: 1;
  }
  100% {
    top: -16.5%;
    opacity: 1;
  }
}

@keyframes oceanWaveTwoW {
  0% {
    top: -16.5%;
    opacity: 1;
  }
  50% {
    top: -17.5%;
    opacity: 1;
  }
  100% {
    top: -16.5%;
    opacity: 1;
  }
}

@-webkit-keyframes oceanWaveTwoZ {
  0% {
    top: -16.5%;
    opacity: 1;
  }
  50% {
    top: -15.5%;
    opacity: 1;
  }
  100% {
    top: -16.5%;
    opacity: 1;
  }
}

@keyframes oceanWaveTwoZ {
  0% {
    top: -16.5%;
    opacity: 1;
  }
  50% {
    top: -15.5%;
    opacity: 1;
  }
  100% {
    top: -16.5%;
    opacity: 1;
  }
}

@media only screen and (max-width: 1000px) {
  body .section {
    min-height: 100vh;
  }
  body .section * {
    background-size: 100% 100vh;
  }
  body nav .cloud1, body main .cloud1 {
    height: 65%;
  }
  body nav .cloud2, body main .cloud2 {
    height: 35%;
  }
  body nav .top.row .logo, body main .top.row .logo {
    width: 6rem;
    height: 6rem;
    margin-left: 0rem;
    margin-top: 0rem;
  }
  body nav .top.row ul, body main .top.row ul {
    display: none;
  }
  body nav .top.row .mobileUl, body main .top.row .mobileUl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
    width: auto;
  }
  body nav .middle.row p, body main .middle.row p {
    width: 95%;
  }
  body .work.section .wrapper {
    margin: 1rem;
  }
  body .work.section .wrapper img {
    height: 10rem;
  }
  body #workSecWrapper .container {
    height: 7rem;
    width: 11rem;
  }
  body #aboutSection .bubbleContainer div {
    height: 6rem;
    width: 6rem;
  }
  body #contactSection form {
    width: 80%;
  }
  body #contactSection form * {
    width: inherit;
  }
  body #contactSection .contactLinks {
    width: 55%;
  }
  body .siteStartUp.section img {
    height: 6rem;
    width: 6rem;
  }
  body #expSection {
    height: 150vh;
  }
  body #expSection .top {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  body #expSection .top * {
    width: 95%;
  }
  body #expSection .top .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
  body #expSection .top .development {
    margin-top: 1rem;
  }
  body #expSection .bottom .water1 {
    height: 200px;
  }
  body #expSection .bottom .water2 {
    height: 100px;
    margin-bottom: -4%;
  }
  body #expSection .bottom .bouy {
    height: 10rem;
    width: 6rem;
  }
}

@media only screen and (max-width: 700px) {
  body .section .cloud1 {
    height: 45%;
    top: 0%;
    left: -10%;
  }
  body .section .cloud2 {
    height: 15%;
    bottom: 0%;
  }
  body nav .middle p {
    width: 100%;
  }
  body .work.section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body .work.section .wrapper {
    margin: 1rem;
  }
  body .work.section .wrapper img {
    height: 8rem;
  }
  body .work.section .middle .moon {
    margin-left: -10rem;
    top: 8%;
    height: 5rem;
    width: 5rem;
  }
  body .work.section .middle p {
    width: 95%;
  }
  body .work.section .bottom {
    width: 100%;
  }
  body .work.section .bottom #workSecWrapper {
    margin: 1rem;
    height: 7rem;
    width: 9rem;
  }
  body #contactSection form {
    width: 95%;
  }
  body #contactSection form * {
    width: inherit;
  }
  body #contactSection .contactLinks {
    width: 100%;
  }
  body #aboutSection .waterBreak {
    height: 200px;
    top: -10%;
  }
  body #aboutSection p {
    width: 95%;
  }
  body #aboutSection .bubbleContainer div {
    height: 4rem;
    width: 4rem;
  }
  body #expSection {
    height: 150vh;
  }
}

@media only screen and (max-height: 550px) {
  body .section {
    height: 200vh;
    width: 100%;
    background-size: 100% 200vh;
  }
  body .work.section {
    height: 200vh;
    width: 100%;
    background-size: 100% 200vh;
  }
  body .experience.section {
    height: 200vh;
    width: 100%;
    background-size: 100% 200vh;
  }
  body .about.section {
    height: 200vh;
    width: 100%;
    background-size: 100% 200vh;
  }
  body .contact.section {
    height: 200vh;
    width: 100%;
    background-size: 100% 200vh;
  }
}
/*# sourceMappingURL=styles.css.map */