body {
  padding: 2rem;

  background-image: url("../img/bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

main {
  max-width: 36rem;
  border-radius: .3rem;
  backdrop-filter: blur(10px);
  border: 1px solid #222;
}

.wide main {
  max-width: 90rem;
}

aside {
  max-width: 36rem;
}

aside.narrow {
  max-width: 36rem;
}

.masthead {
  padding: 2rem;
}

.masthead img {
  width: 60px;
  height: 60px;
}

.masthead h1 {
  font-size: 2.2rem;
  line-height: 2.3rem;
}

nav {
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

nav .fb {
  background-image: url('../img/facebook.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border: none;
  overflow: hidden;
  text-indent: 999px;
}

label:has(#mobile-menu) {
  display: none;
}

nav a {
  display: block;
}

@media (width > 1100px) {
  body {
    flex-direction: row;
    align-items: flex-start;
  }

  aside#calendar {
    width: 700px;
  }
}
