html, body {
    height: 100%;
}

body {
    background-color:#c5f2ee;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 40px;
}

.icon-bar a:hover {
	font-size: 50px;
}
.instagram,.telegram {  
		border-radius: 10px;
    } 

#wave {
    height: 150px;
    width: 150px;
    /*  fill: #6a5acd;
    */}

#bar1 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
    fill: #f4189c;
}

#bar2 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    fill:#650166 ;
}

#bar3 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
    fill:#442d72;
}

#bar4 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    fill:#094585;
}

#bar5 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
    fill:#056ea9;
}

#bar6 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    fill:#0fd837;
}

#bar7 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s;
    fill:#ff8a2b;
}

#bar8 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    fill:#ffd12b;
}

#bar9 {
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    -webkit-animation-delay: 1.35s;
    animation-delay: 1.35s;
    fill:#ff0f0f;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
    50% {
        -webkit-transform: scaleY(0.7);
        transform: scaleY(0.7);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
    50% {
        -webkit-transform: scaleY(0.7);
        transform: scaleY(0.7);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
}