html, body {
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}

body {
  font-family: 'Raleway', sans-serif;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  color: #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.wrapper {
  width: 200px;
  height: 60px;
  position: relative;
}

header {
  margin-bottom: 50px;
}

footer {
  margin-top: 50px;
}

h2,
h3,
h4 {
  text-align: center;
}

p {
  text-align: center;
  margin-top: 50px;
}

a {
  color: #125881;
  text-decoration: none;
}

a:hover {
  color: black;
}

@media screen AND (max-width: 768px) {
  body {
    width: 70%;
    margin-top: 20vh;
  }
}

@media screen AND (max-width: 480px) {
  body {
    width: 90%;
    margin-top: 20vh;
  }
}

.circle {
  width: 35px;
  height: 35px;
  position: absolute;
  border-radius: 50%;
  background: url('logo.png') no-repeat center center / contain;
  left: 10%;
  transform-origin: 50%;
  animation: circle .75s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 35px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 40%;
  animation-delay: .2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 10%;
  animation-delay: .3s;
}

.shadow {
  width: 35px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 72px;
  transform-origin: 50%;
  z-index: -1;
  left: 10%;
  filter: blur(1px);
  animation: shadow .75s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 40%;
  animation-delay: .2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 10%;
  animation-delay: .3s;
}