/* Centre content */
html, body {
  height: 100%;
}

html {
  display: table;
  margin: auto;
}

body {
  display: table-cell;
  vertical-align: middle;
}

/* Background gradient */
body { 
  background: rgb(0,166,237);
  background: linear-gradient(90deg, rgba(0,166,237,1) 0%, rgba(123,94,212,1) 50%, rgba(37,85,251,1) 100%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Typography */

@font-face {
  font-family: Lato;
  src: url("Lato_Bold.ttf");
}

@font-face {
  font-family: Montserrat;
  src: url(Montserrat_Variable.ttf);
}

h1 {
  font-family: Lato;
  font-size: 40px;
  color: #ededed;
  text-align: center;
}

p {
  font-family: Montserrat;
  font-size: 16px;
  color: #ededed;
  text-align: center;
}

a:link {
  color: #FF7170;
}

a:visited {
  color: #BFACE2;
}

/* Social links centering */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

  .socials {
    bottom: 0;
    text-align: center;
}

  .socials li {
    list-style: none;
    display: inline-block;
}

  .socials a {
    display: block;
    height: 2em;
    width: 2em;
}