body {
  background-image: url('run.jpg');
  background-size: cover;
  -webkit-animation: slidein 5s;
  animation: slidein 5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@keyframes slidein {
  from {
    background-position: left;
    background-size: 450px;
  }
  to {
    background-position: 0px 0px;
    background-size: 450px;
  }
}

.center {
  font-family: OpenSans-Regular, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

.centerx {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 3px;
  align-items: center;
}

.centerm {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  margin: auto;
  top: -280px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0);
}

.centerz {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  margin: auto;
  top: 340px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0);
}
.centerx h1 {
  text-align: center;
  color: white;
  font-family: 'Source Code Pro', monospace;
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  font-family: 'Gruppo', cursive;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.logo {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  height: 50px;
  margin-right: 20px;
  margin-top: 15px;
}

.menu-icon {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0;
  margin: 10px 15px;
  transform: scale(0.8);
  padding: 0;
  cursor: pointer;
  z-index: 20;
}

.menu-bar {
  width: 50px;
  height: 5px;
  background: rgb(190,190,190);
  position: absolute;
  transition: all 0.3s;
}

.menu-bar1 {
  margin-top: 9px;
}

.menu-bar2 {
  margin-top: 23px;
}

.menu-bar3 {
  margin-top: 37px;
}

.menu-icon.hover .menu-bar1 {
  -webkit-transform: rotate(45deg) scaleX(0.7);
  margin-top: 22px;
}

.menu-icon.hover .menu-bar2 {
  opacity: 0;
}

.menu-icon.hover .menu-bar3 {
  -webkit-transform: rotate(-45deg) scaleX(0.7);
  margin-top: 22px;
}

.menu {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu-con {
  -webkit-flex-grow: 1;
  flex-basis: 0;
  flex-grow: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  position: relative;
  top: -100%;
  transition: all 0.5s;
}

.menu-con p:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(0,0,0,0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu-con:hover p:before {
  background: rgba(0,0,0,0.2);
}

.menu-con p {
  height: 20px;
  -webkit-align-self: center;
  color: white;
  font-size: 25px;
  z-index: 2;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .menu-con {
    min-width: 50%;
  }
}

@media screen and (max-width: 350px) {
  .menu-con {
    min-width: 100%;
  }
}


.img-wrapper {
  max-width: 150px;
  position: relative;
}
.img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 50%;
}
.img-wrapper::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 6px solid #333;
  border-top-color: crimson;
  border-bottom-color: rgba(220, 20, 60, 0.8);
  border-radius: 50%;
  z-index: -1;
  animation: spin 3s linear infinite;
}
.img-wrapper:hover::before {
  animation: spin 0.5s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  min-width: 300px;
  min-height: 60px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  background: #4FD1C5;
  background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(79,209,197,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
}

button::before {
  content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button:hover, .button:focus {
  color: #313133;
  transform: translateY(-6px);
}

button:hover::before, button:focus::before {
  opacity: 1;
}

button::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #00FFCB;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

button:hover::after, button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}