html {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #161616;
}

body {
  margin: 0;
  overflow: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  max-width: 100%;
  max-height: 100vh;
}

.main-link {
  position: relative;
  text-decoration: none;
}

.btn__pulse {
  position: absolute;
  top: 80%;
  font-weight: 500;
  font-size: 36px;
  font-weight: 700;
  color: rgb(2, 2, 2);
  padding: 20px 35px;
  background: linear-gradient(
    90deg,
    rgb(217 236 255) 0%,
    rgb(119 148 240) 100%
  );
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  line-height: 30px;
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 199, 21, 0.5);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(255, 199, 21, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 199, 21, 0.5);
  }
}
