:root {
  --main-color: #EFB000;
}

body {
  margin: 0;
  padding: 3rem 3rem 0;
  background-color: var(--main-color);
  transition: background-color 0.5s ease-in-out;
  color: #3c3333;
  min-height: 100vh;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-synthesis: none;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 700;
  font-style: normal;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

body a {
  color: #888;
}

.font-provider {
  font-family: "Nova Mono", "Kosugi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.content-area-frame {
  background-color: #f9f9f9;
  background-image: url('images/thumbnail_scotch-egg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
  min-height: calc(100vh - 8rem);
}

.content-area {
  padding: 2rem;
  position: relative;
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid white;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
}

.coming-soon {
  text-align: center;
  color: white;
}

.coming-soon h1 {
  font-size: 4rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  max-width: 200px;
  height: auto;
}

@media (max-width: 1024px) {
  body {
    padding: 1.5rem;
  }

  .content-area {
    padding: 0;
    min-height: calc(100vh - 12rem);
    overflow: hidden;
  }

  .content-area-frame {
    min-height: calc(100vh - 12rem);
  }

  .coming-soon h1 {
    font-size: 2.5rem;
  }

  .footer {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-logo {
    max-width: 200px;
    height: auto;
  }
}
