@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #0058e6;
}
.wrap-menu {
  position: absolute;
  top: 60px;
  right: 30px;
  transform: translate(-50%, -50%);
  }
.menu {
  width: 50px;
  height: 10px;
  background: rgb(255, 255, 255);
  border-radius: 5px 5px 5px 5px;
  margin: 4px 0; 
}

.Findmyclass img { 
  position: absolute;
  width: 50px;
  height: auto;
  top: 25px;
  left: 30px;
  background-color: #fff;
  border: 0px;
  border-radius: 15px 15px 15px 15px;
}

.nadpis {
  font-family: "Helvetica" sans-serif;
  text-align: center;
  font-size: 70px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: rgb(0, 255, 238) 1px 1px 20  px;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 4px rgb(11, 9, 9);
}


.mista {
  display: flexbox;
  padding-top: 60px;
  text-align: center;
}
.misto {
  z-index: 10;
  display: inline-block;
  width: 20%;
  background-color: rgb(254, 255, 255);
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgb(1, 7, 181);
  padding: 10px;
  margin: 5px;
  text-align: center;
  font-size: 24px;
  text-decoration: none;
  color:rgb(0, 0, 0);
}
.misto:hover {
  box-shadow: 5px 5px 10px rgb(0, 0, 0);
}

.close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 50px;
  height: 50px;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 55px;
  width: 10px;
  border-radius: 5px 5px 5px 5px;
  background-color: #ffffff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}







.waves {
  position: absolute;
  width: 100%;
  left: 0px;
  height: 15vh;
  max-height: 140px;
  top: 85%;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.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);
  }
}
