:root {
  --primary: #00bfb3;
  --dark: #343541;
  --white: #fefefe;
  --off-white: #f6f5f5;
  --bkgrnd: #bfbfbf;

  --radius--s: 1rem;

  --space-xs: clamp(1.02rem, calc(0.35vw + 0.91rem), 1.4rem);
  --space-s: clamp(1.28rem, calc(0.65vw + 1.07rem), 1.98rem);
  --space-m: clamp(1.6rem, calc(1.11vw + 1.24rem), 2.8rem);
  --space-l: clamp(2rem, calc(1.81vw + 1.42rem), 3.96rem);
  --space-xl: clamp(2.5rem, calc(2.87vw + 1.58rem), 5.6rem);

  --logo-size: 32px;
}

/* Layout */

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: sans-serif;
  background-color: var(--bkgrnd);
  width: 70vw;
  margin: auto;
}

main.main--grid {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.paper--bkgrnd {
  display: grid;
  gap: var(--space-xl);
  background-color: var(--white);
  padding: var(--space-m) var(--space-l);
  margin: var(--space-m) 0;
  max-width: 1000px;
  border-radius: 8% 6% 9% 4% / 11% 11% 13% 7%;
  border: solid 3px var(--dark);
  box-shadow: 7px 11px 32px 2px rgba(0, 0, 0, 0.19);
  position: relative;
}

/* End of Layout */

/* Default Text Styles */

h1,
h2 {
  font-family: 'Amatic SC';
  font-weight: bold;
}

h1 {
  font-size: max(3rem, min(calc(3vw + 2rem), 3.75rem));
  font-size: clamp(3rem, calc(3vw + 2rem), 3.75rem);
  color: var(--dark);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

h2 {
  font-size: max(2.28rem, min(calc(1.84vw + 1.69rem), 2.75rem));
  font-size: clamp(2.28rem, calc(1.84vw + 1.69rem), 2.75rem);
  line-height: 1.3;
  text-align: center;
  color: var(--white);
}

a:link {
  color: var(--dark);
  text-decoration: none;
}

a:visited {
  color: var(--dark)
}

/* end of Text Styles */

/* Menu Items */

.menu--item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-s);
  background-color: var(--off-white);
  margin-top: var(--space-xs);
  border-radius: var(--radius--s);
  box-shadow: 11px 9px 20px -13px rgba(0, 0, 0, 0.75);
}

.menu--item > a {
  display: flex;
  align-items: center;
  padding: var(--radius--s);
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.menu--item > a::after {
  content: "";
  flex: 0 0 var(--logo-size);
}

.menu--item h3 a {
  text-align: center;

}

.menu--item-heading {
  flex: 1;
  text-align: center;
  font-size: clamp(1.1rem, calc(1vw + .5rem), 1.3rem);
  line-height: 1.4;
  color: var(--dark);
  margin: 0
}

.menu--item:hover {
  background-color: var(--off-white);
  box-shadow: 0 0 0 2px var(--primary);
}

.heading--bkgrnd {
  background-color: var(--dark);
  border-radius: 93% 20% 92% 12% / 33% 87% 21% 75%;
  padding: .5rem;
}

.margin--top {
  margin-top: var(--space-l);
}

/* End of Menu Items */

/* Images */

.menu--item img{
  flex: 0 0 auto;  
  max-width: var(--logo-size);
  max-height: var(--logo-size);
}

.full--logo {
  grid-column: 1 / -1;
  margin: auto;
  position: absolute;
  bottom: calc(0% + 30px);
  /* Position the div at the bottom of the container */
  left: 0;
  /* Align the div to the left edge of the container */
  right: 0;
  width: 70%;
  /* Make the div width equal to the container width */
  max-width: 250px;
}

.center--wrapper {
  margin: 70px auto;
}

/* end of Images */


/* Media */

@media (max-width: 1300px) {
  .paper--bkgrnd {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    outline-offset: 0px;
  }

  body {
    width: 90%;
  }

  .hide--mobile {
    display: none;
  }
}

@media (min-width: 1299px) {
  .hide--desk {
    display: none;
  }
}
/* end of media */