*,
*:before,
*:after {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Zantroke';
  src: url('fonts/Zantroke.otf');
}
@font-face {
    font-family: 'Studio Gothic';
    src: url('fonts/StudioGothicAlternate-ExtraLigh\ Trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body {
  padding: 0;
  margin: 0;
}
body {
  display: grid;
  align-items: center;
  grid-template-rows: 1fr 1fr 50px;
  grid-template-columns: auto;
  background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
  color: rgb(255,255,255);
  width: 100vw;
  height: 100vh;
  font-family: 'Studio Gothic', 'sans-serif';
  text-align: center;
}
header {
  font-family: 'Zantroke';
  font-size: 10vw;
  align-self: end;
}
main {
  font-size: 4vw;
  align-self: start;
}
footer {
  font-size: 0.8em;
}
footer a {
  text-decoration: none;
}
.heart {
  color: rgb(255,0,0);
}
