body {
  margin: 0;
  padding: 0;
  color: white;
  font-family: Roboto, sans-serif;
  background: rgb(20, 19, 19);
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40%;
  text-align: center;
  opacity: 0.6;
  text-shadow: 1px 1px 2px black;
}

@media only screen and (min-width: 1000px) {
  h1 {
      padding-top: 20%;
  }
}

.block {
  position: relative;
  width: 500px;
  height: 424px;
  margin: 10% auto 0;
  background: url(./test1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.block .logo {
  position: absolute;
  top: 15px; 
  max-width: 100px; 
  height: auto; 
}

.block p {
  margin: 0; 
}


a {
  color: #0060B6;
  text-decoration: none;
  margin-top: 5px; 
  font-size: 28px;
  font-weight: 900; 
}

a:hover {
  color: #00A0C6;
  text-decoration: none;
  cursor: pointer;
}

.glow::before,
.glow::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(
      -45deg,
      #00ff66,
      #00ffff,
      #ff00ff,
      #ff0099,
      #099fff
  );
  background-size: 400%;
  height: calc(100% + 5px);
  width: calc(100% + 5px);
  z-index: -1;
  animation: change 40s linear infinite;
}

@keyframes change {
  0% {
      background-position: 0 0;
  }
  50% {
      background-position: 400% 0;
  }
  100% {
      background-position: 0 0;
  }
}

.glow::after {
  filter: blur(40px);
  opacity: 0.5;
}

#image {
  text-align: right;
  padding: 20px;
  display: block;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#image1 {
  text-align: left;
  padding: 20px;
  display: block;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
