* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #111;
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  z-index: 999999;
}

img {
  max-width: 100%;
  width: auto;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.main__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
}

.button {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  width: 375px;
  text-align: center;
}

.button a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.button a:first-child {
  border: none;
  transition: 0.3s;
  animation: glow 1s infinite;
  transition: 0.5s;
  background-color: #63ab07;
  padding: 16px 0px 16px 0px;
  border-radius: 5px;
  box-shadow: 0 0 15px #00bfff;
  cursor: pointer;
}

.button a:first-child:hover {
  background-color: #ff7575;
  transition: 0.5s;
}

.button a:last-child {
  border: none;
  transition: 0.3s;
  transition: 0.5s;
  background-color: #4199ff;
  padding: 16px 0px 16px 0px;
  border-radius: 5px;
  box-shadow: 0 0 15px #00bfff;
  cursor: pointer;
}

.button a:last-child:hover {
  background-color: #ffc107;
  transition: 0.5s;
}

.logo img {
  width: 375px;
}

.text {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.text p {
  font-size: 20px;
}

/*.text p:first-child {*/
/*  text-align: center;*/
/*}*/

footer {
  text-align: center;
  margin-top: auto;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);

    opacity: 1;

    border-radius: 30%;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);

    opacity: 0;

    border-radius: 50%;
  }
}

@keyframes glow {
  0% {
    box-shadow: 5px 5px 20px rgb(93, 52, 168), -5px -5px 20px rgb(93, 52, 168);
  }

  50% {
    box-shadow: 5px 5px 20px rgb(81, 224, 210), -5px -5px 20px rgb(81, 224, 210);
  }

  100% {
    box-shadow: 5px 5px 20px rgb(93, 52, 168), -5px -5px 20px rgb(93, 52, 168);
  }
}

.banner img {
  width: 100%;
  max-width: 317px;
}

@media screen and (max-width: 767px) {
  .logo img,
  .button {
    width: 320px;
  }

  .main__content {
    margin-top: 2rem;
  }
}
