body {
  display: grid;
  grid-template:
    "header" 1fr
    "main" 80%
    "footer" 1fr/
    1fr;
  height: 100%;
  padding: 15px;
}


/* ################################ */
/* ############ HEADER ############ */
/* ################################ */

header nav {
  display: flex;
  justify-content: space-between;
  font-size: 1.3em;
}

header h1 {
  display: none;
}

#event-long {
  display: none;
}


/* ################################ */
/* ############# MAIN ############# */
/* ################################ */

main {
  grid-area: main;
  align-content: center;
}

/* ############# HOME ############# */

.delin {
  margin-top: 1em;
  margin-bottom: 2em;
}

.delin h1, .delin p {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1em;
}

.info-a {
  margin-bottom: .5em;
}

/* ############ EVENTS ############ */

.event-header {
  text-align: center;
  font-weight: 400;
}

/* ############# SHOP ############# */

.shop-container {
  height: 100%;
  overflow: auto;
}

.shop-item {
  display: flex;
  gap: 10px;
}

.shop-img {
  flex: 1 1 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.shop-text {
  flex: 1 1 0px;
  font-size: 1.1em;
}

.shop-heading {
  font-weight: normal;
  font-size: 1em;
}

.shop-text p {
  margin-top: .3em;
}


/* ############# ABOUT ############# */

.about-container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 30px;
  overflow: auto;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-left p {
  width: 100%;
}

#signature {
  display: flex;
  justify-content: center;
  align-items: center;
}

#signature img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#signature img {
  width: 50%;
  margin-left: auto;
  margin-top: 20px;
}

.about-right {
  flex: 1 1 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}


/* ################################ */
/* ############ FOOTER ############ */
/* ################################ */

footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.foot-1, .foot-2 {
  display: none;
}

.foot-3 {
  text-align: right;
}

.foot-3 p {
  display: none;
}

.foot-3 img {
  width: 2em;
}

#tiktok {
  width: 1.3em;
  margin-left: 2em;
}

.foot-3 ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
