header {
  display: flex;
  justify-content: center;
  background-color: #282828;
  height: 175px;
}
@media (min-width: 768px) {
  header {
    height: 200px;
  }
}
header a {
  display: inline-block;
  margin-top: 28px;
}
@media (min-width: 768px) {
  header a {
    margin-top: 40px;
  }
}
header a img {
  width: 125px;
}
@media (min-width: 768px) {
  header a img {
    width: 141px;
  }
}

.footer {
  padding: 0;
  background-color: #000;
}
.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 20px;
  height: 100px;
  color: rgba(205, 205, 205, 0.6);
}
@media (min-width: 768px) {
  .footer .container {
    height: 60px;
  }
}
.footer .container a {
  color: rgba(205, 205, 205, 0.6);
  transition: color 0.3s;
}
.footer .container a:hover {
  color: #E6002D;
}

#app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  letter-spacing: 0;
}

main {
  flex-grow: 1;
  text-align: center;
  background-color: #282828;
  box-shadow: 0 0 40px 6px black;
  border-bottom: 5px solid #E6002D;
}
@media (min-width: 768px) {
  main {
    margin-bottom: 0;
    box-shadow: unset;
    border-bottom: unset;
  }
}
