body {
  background-color: #000000;
  color: white;
  font-family: Verdana;
}

#page {
  margin: 95px;
  padding: 30px;
}

h1 { 
  color: #ffffff;
  }

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #1a1a1a;
   color: white;
}

.button {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  background: rgb(145, 92, 182);
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

 p{
  color: #fff;
  text-align:center;
  margin-top: 10px
}

a {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 40px;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: 0.5s;
}

.btns{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  flex-direction: row;  
}
.blue-btn{
  color: #03e9f4;
  border: 1.5px solid #03e9f4;
  border-radius: 7px;  
}
.blue-btn:hover{
  background-color: #03e9f4;
  color: #050801;
  box-shadow: 0px 0px 5px #03e9f4, 0px 0px 25px #03e9f4, 0px 0px 50px #03e9f4, 0px 0px 100px #03e9f4;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005); 
}
.pink-btn{
  color: #e100ff;
  border: 1.5px solid #e100ff;
  border-radius: 7px;  
}
.pink-btn:hover{
  background-color: #e100ff;
  color: #050801;
  box-shadow: 0px 0px 5px #e100ff, 0px 0px 25px #e100ff, 0px 0px 50px #e100ff, 0px 0px 100px #e100ff;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005); 
}