* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hero-section{
  background-image: 'c:\Users\aruzh\Downloads\0924f416-ad12-4b3b-86da-65f0deff64c3.jpeg';
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100hv;
  position: relative;
  color: #fdf6ef;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #111;
  background-color: #7e5022;
}

header {
  background: url('coffee.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.coffee-background {
  background-image: url('coffee.jpg');
  background-size: cover;         /* чтобы изображение растягивалось */
  background-position: center;    /* чтобы по центру было */
  background-repeat: no-repeat;   /* чтобы не повторялось */
  height: 100vh;                  /* на весь экран */
  display: flex;                  /* чтобы выровнять текст */
  justify-content: center;
  align-items: center;
  color: white;                   /* цвет текста */
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.btn {
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 30px;
  background-color: #fff5ea;
  text-align: center;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature p {
  font-size: 0.95rem;
  color: #444;
  max-width: 250px;
  margin: 0 auto;
}

.about {
  padding: 80px 30px;
  text-align: center;
  background-color: #fdf6ef;
}

.about h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}
