@import 'normalize.min.css';
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

html {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 16px;
  font-family: 'Oswald';
  background-color: #012241;
  background-image: url('../img/gradient.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  color: #3d5975;
  text-decoration: none;
  transition: color .4s;
}
a:hover {
  color: #ffffff
}

div {
  animation: fadein 2s;
}
  div > h1 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0px 1px 1px #051626;
    text-transform: uppercase;
  }
  div > nav {
    display: flex;
    justify-content: space-around;
    margin-top: .3rem;
  }

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (min-width: 992px) {
  h1 {
    font-size: 6rem;
  }
}
