html {
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  border: none;
  font-family: 'Montserrat', sans-serif;
  background-image: linear-gradient(to right top, #30007a, #54097b, #6f1a7d, #862c80, #993f83, #ac4c81, #bb5c80, #c76d81, #d2807e, #d89481, #dba989, #ddbd97);
}

h1 {
  display: table;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 400;
  color: white;
  text-align: center;
}

.logo {
  display: table;
  margin: 0 auto;
  padding-top: 80px;
}

.content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  margin: auto;
}

.content a {
  background-color: #F6577F;
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  display: table;
  margin: 0 auto;
  padding: 14px 48px 14px 48px;
  margin-top: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.04);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.04);
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.04);
}

.content a:hover {
  background-color: #F0547B;
}

.content a:active {
  background-color: #F0547B;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
} 

.footer {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  color: white;
  position:absolute;
  bottom:0;
}

.footer p {
  display: table;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.footer a {
  color: #F6577F;
  text-decoration: none;
}



