@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@200&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 12px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100vw - 24px);
  height: calc(100vh - 24px);
  position: relative;
}

h1,
p,
a {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 0;
}

h1 {
  font-size: 40px;
  line-height: 150%;
  color: #202325;
  text-transform: uppercase;
  text-align: center;
}

p,
a {
  text-decoration: none;
  color: #fff;
}

#image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
  z-index: 1;
}

.top {
  background-color: #fff;
  padding: 5px 22px;
}

.bottom {
  background-color: #261a12;
  padding: 5px 17px;
  display: flex;
  width: fit-content;
}

@media (width >= 768px) {
  body {
    margin: 24px;
  }

  main {
    width: calc(100vw - 48px);
    height: calc(100vh - 48px);
  }
}
