body {
  margin: 0;
  padding: 0;
}

.section {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  position: relative;
}

.floating-bg {
  width: 130vw;
  height: 130vw;
  background-color: rgb(230, 74, 87);
  opacity: 1;
  position: absolute;
  top: -110vw;
  left: calc(30% - 75vw);
  border-radius: 43%;
  animation: rotate 25s infinite;
  opacity: 0.6;
  overflow: hidden;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}


@keyframes rotate {
  0% {
      transform: rotate(0);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* All */
#link {
    color: #000000;
}

@import url('https://fonts.googleapis.com/css?family=Dela+Gothic+One:regular');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:regular,italic,700,700italic');

/* Header */
.container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
}

h1 {
  font-family: Dela Gothic One;
}

h4 {
  font-family: PT Sans;
}

.waviy {
  position: relative;
}

.waviy span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #000000;
  animation: flip 2.7s infinite;
  animation-delay: calc(.2s * var(--i))
}

@keyframes flip {
  0%,80% {
    transform: rotateY(360deg) 
  }
}

@media screen and (max-width: 768px) {
  .waviy span {
    font-size: 25px;
  }
  .container {
    flex-direction: column;
    text-align: right;
  }
  .left, .right {
    flex: none;
  }
  .image {
    padding-bottom: 60px;
  }
}

.left {
  flex: 1;
  text-align: center;
}

.right {
  flex: 1;
  text-align: center;
}

.image {
  max-width: 100%;
  height: auto;
  width: 400px;
}


.footer {
  background-color: #ffffff;
  padding: 0px; 
  text-align: center; 
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
  flex-wrap:wrap;
}

.ft {
  width: 100px;
  padding-top: 0px;
}

.font-awesome {
  padding: 0;
  margin: 0;
}


.bar {
  font-family: PT Sans;
  font-size: 16px;
}

.bar a:hover {
  opacity: 0.5;
}
