html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  background: rgb(0, 0, 0);
  background: linear-gradient(103deg, rgb(0, 0, 0) 68%, rgb(0, 0, 0) 91%);
}

.container {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 1rem;
}

.container .filled-content {
  text-align: left;
  color: rgb(0, 0, 0);
}

.container .filled-content .copyright {
  padding-top: 22rem;
  text-align: center;
}

img {
  width: 240px;
}

footer {
  color: rgb(0, 0, 0);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 400px) {
  .container .filled-content {
    text-align: center;
  }

  img {
    width: 180px;
  }
}