.header
{
  text-align: center;
  background: #DC7064;
  cursor: pointer;
  text-decoration: none;
}

.container
{
  background: white;
  margin: 0 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer
{
  background: #1a1a2e;
  bottom: 0px;
  padding-right: 70px;
  padding: 30px;
}

#overlay
{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 900;
}


@media (max-width: 920px) {
  .container
  {
    margin: 0;
    width: 100%;
  }
}