@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Global */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  font-size: 10px;
  font-family: "Roboto", sans-serif;
  background-color: black;
  color: #FFFFFF;
}

body {
  animation: fadeInAnimation ease 1.5s;
}

a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

p {
  color:#FFFFFF;
  top: 100px;
  display: block;
  font-weight: 400;
}

h1 {
  font-weight: 700;
  padding-bottom: 10px;
  font-size: 24px;
}

h2 {
  font-weight: 400;
  line-height: 23px;
  max-width:800px;
  text-align:center;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

h4 {
  max-width:800px;
  margin-left: auto;
  margin-right: auto;
}

.home {
    margin: auto;
    width: 100%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    vertical-align: top;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.buttons{
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding-bottom:10px;
}

.next{
    transition: 0.15s all ease;
}

.center-image {
  height:200px;
}

.button-glow {
  top: 20px;
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #222;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 7px;
}

.button-glow:before {
  content: '';
  background: linear-gradient(45deg, #E31B37, #FAC237, #E31B37, #FAC237, #E31B37);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(10px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.button-glow:active {
  color: #000;
}

.button-glow:hover:after {
  background-color: #444;
  transition: background 0.3s;
}

.button-glow:active:after {
  background: transparent;
}

.button-glow:hover:before {
  opacity: 1;
}

.button-glow:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.small-button-glow {
  top: 20px;
  width: 110px;
  height: 30px;
  border: none;
  outline: none;
  color: #fff;
  background: #222;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 7px;
}

.small-button-glow:before {
  content: '';
  background: linear-gradient(45deg, #E31B37, #FAC237, #E31B37, #FAC237, #E31B37);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(10px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 5px;
}

.small-button-glow:active {
  color: #000;
}

.small-button-glow:hover:after {
  background-color: #444;
  transition: background 0.3s;
}

.small-button-glow:active:after {
  background: transparent;
}

.small-button-glow:hover:before {
  opacity: 1;
}

.small-button-glow:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 5px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@media screen and (max-height: 713px) {
    .home {
      margin: auto;
      width: 100%;
      padding: 10px;
      position: absolute;
      vertical-align: top;
      display: inline-block;
      text-align: center;
    }
    .links {
      top: 0%;
      transform: translate(0, 0%);
    }
}

@media screen and (min-width: 480px) {
    .next{
        margin-left: 6px;
    }
}

@keyframes fadeInAnimation {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}