@import url('//fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('//fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');

body {
  background-color: rgb(17, 3, 102);
  margin:0;
  color: white;
}

h1 {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight:10;
  font-size:48px;
}

p {
  font-family: 'DM Sans', sans-serif;
  font-size:18px;
  font-weight:400;
}

.header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgb(77, 15, 158) 0%, rgb(15, 3, 101) 100%);
  color:white;
}
.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.inner-header {
  height:15vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background: rgb(17, 3, 102);
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}
.logo {
  border-radius: 100%;
  width: 100px;
  height: auto;
}

h1,h2,h3,h4,h5,h6,p,a {
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: bottom right;
}

.a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.button {
  font-family: 'DM Sans', sans-serif;
  border-radius: 500px;
  font-weight: 1000;
  background-color: rgb(52, 10, 135);
  color: white;
  transition: background-color 0.187s ease-in-out;
  padding: 10px 25px;
  border-style: none;
}
.button:hover {
  background-color: rgb(37, 7, 122);
  cursor: pointer;
}

footer {
  justify-content: space-between;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
