* {
  padding: 0;
  margin: 0;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  height: 100vh;
  width: 100vw;

  display: flex; 
  flex-direction: column;
}

#wrapper {
  flex-grow: 1;

  display: flex;
  flex-direction: column;
}

h1 {
  margin-top: 5em;

  text-align: center;
}

.links {
  flex-grow: 1;

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.links > img:hover {
  cursor: pointer;
}