body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: rgba(238, 249, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: Arial, sans-serif;
    color: rgba(33, 37, 41, 0.94);
}

.logo {
    height: 100%;
}
.blick {
    height: 30vh;
    width: auto;
    margin-top: 20px;
    position: relative;
    overflow: hidden; 
}


.blick::before {
  content: '';
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0.3;
  filter: blur;
  background: linear-gradient(to left, transparent 0%, #fff 40%, #fff 60%, transparent 100%);
  transform: translate(-100%, -25%) rotate(10deg);
  animation: blick 6s infinite;
}
@keyframes blick {
  0% {
    transform: translate(-100%, -25%) rotate(10deg);
  }
  20% {
    transform: translate(100%, -25%) rotate(10deg);
  }
  100% {
    transform: translate(100%, -25%) rotate(10deg);
  }
}



h1 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 1.5em;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
}