@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#logo {
  width: 50vw;
  margin: 5vh 0 5vh 5vw;
}

#footer {
  width: 100vw;
  padding: 0 10vw 0 35vw;
  position: absolute;
  bottom: 0;
  border-bottom: 10vh #1a1a18 solid;
}

#footer img {
  transform: translateY(15%);
}

h1 {
  font-size: 3rem;
  margin-left: 7vw;
}

a {
  color: #009DE2;
  text-decoration: none;
}

a:hover {
  color: #E4007D;
}