/* === СБРОС === */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* === ОСНОВА === */
body {
  font-family: 'Playfair Display', serif;
  background: url('../img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  color: #eded10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;

}

/* === МЕНЮ === */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.menu a {
  background-color: rgba(242, 47, 26, 0.47);
  color: #d6ed08;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* === КОНТЕНТ === */
.content {
  background-color: rgba(67, 63, 63, 0.334);
  padding: 30px;
  border-radius: 43px;
  max-width: 700px;
  width: 90%;
  margin-top: 60px;
}

/* === ЗАГОЛОВКИ И ПАРАГРАФЫ === */
h1, h2 {
  font-size: 2em;
  margin: 20px 0;
}

p {
  font-size: 1.2em;
  line-height: 1.6em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === МЕДИА ДЛЯ МОБИЛЬНЫХ === */
@media (max-width: 500px) {
  h1 {
    font-size: 2.2em;
  }

  p {
    font-size: 1.2em;
  }

  .container {
    max-width: 550px;
    transform: translateX(-75px);
    margin-top: 120px;
  }
}
