/* ############################################### */
/* Fonts */
/* ############################################### */

/* cyrillic-ext */
@font-face {
  font-family: 'Cormorant SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cormorantsc/v19/0yb5GD4kxqXBmOVLG30OGwsupjAxxTY.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* latin */
@font-face {
  font-family: 'Cormorant SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cormorantsc/v19/0yb5GD4kxqXBmOVLG30OGwsuqzAx.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ############################################### */
/* Reset & Base Styles */
/* ############################################### */

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.site-name {
  font-family: 'Cormorant SC', Georgia, serif;
}

a {
  text-decoration: none;
}

/* ############################################### */
/* Layout & Structure */
/* ############################################### */

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  text-align: center;
}

/* ############################################### */
/* Logo */
/* ############################################### */

.logo {
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #000;
}

.star-image {
  width: 100%;
  max-width: 16rem;
  height: auto;
  display: block;
}

/* ############################################### */
/* Info Box */
/* ############################################### */

.info-box {
  width: min(100%, 32rem);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fffdf8;
}

.info-box p {
  margin: 0;
  line-height: 1.65;
  color: #666;
}

/* ############################################### */
/* Button */
/* ############################################### */

.button {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border: 1px solid #595959;
  color: #fff;
  background: #595959;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  font-family: Cormorant SC, Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}

.button:hover {
  color: #fff;
  background: #333;
}

.button:focus-visible {
  outline: 3px solid #51748c;
  outline-offset: 4px;
}