@font-face {
  font-family: "JosefineSans";
  src: url("../font/JosefinSans-Regular.ttf");
}

body {
  padding: 0;
  margin: 0;
  font-family: 'JosefineSans', Arial, Helvetica, sans-serif;
  background-color: #000098;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  text-align: center;
  padding: 30px 30px;
}

.main {
  text-align: center;
}

a {
  color: white;
}

a:hover {
  color: white;
}

img {
  max-width: 501px;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .container {
    text-align: left;
    padding: 50px 100px;
  }

  .header,
  .footer {
    display: flex;
    justify-content: space-between;
  }

  .header div:last-child,
  .footer div:last-child {
    text-align: right;
  }
}
  