* {
    box-sizing: border-box;
}

body {
	background-color: #1f242d;
	color: #fff;
	font-family: sans-serif;
}

.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 2rem 9%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}  
  
h1 {
    font-size: 6rem;
    margin: 0;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 1px;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}

p {
    font-size: 1.1rem;
    font-weight: 200;
    color: #b1b1b1;
    margin: 0;
    margin-top: 1px;
}

a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0ef;
	color: #323946;
	text-decoration: none;
	margin-top: 25px;
	font-size: 1.2rem;
    font-weight: 600;
	border-radius: 4rem;
    box-shadow: 0 0 1rem #0ef;
    transition: .5s ease;
}

a:hover {
    box-shadow: none;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    h1 {
      font-size: 4em;
    }
    p {
      font-size: 1em;
    }
}

@media (max-width: 576px) {
  h1 {
    font-size: 3em;
  }
  p {
    font-size: 0.8em;
  }
  a {
    font-size: 1em;
  }
}
@media (max-width: 450px) {
  h2 {
    font-size: 1.5em;
  }
  p {
    font-size: 0.7em;
    margin-top: .3rem;
  }
  a {
    font-size: 1em;
  }
}