body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #fff;
}
a {
  color: rgb(255, 238, 0);
}

.header {
  background-color: #000;
  padding: 20px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header img {
  width: 120px;
  height: auto;
}
.header nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.header a {
  color: #fff;
  text-decoration: none;
}
.hero {
  padding: 5%;
  background:  url('../img/demo1.jpg') no-repeat center center/cover;
}
.hero-beton {
  padding: 5%;
  background:  url('../img/pozadina.jpg') no-repeat center center/cover;
}
.hero-beton img {
  max-width: 400px;
}
.hero h1 {
  text-align: left;
  font-size: 3em;
  max-width: 50%;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-about {
  padding: 10%;
  background:  url('../img/demo3.jpg') no-repeat center center/cover;
}
.hero-about p {
  max-width: 400px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section img {
  max-width: 400px;
}
.section h2 {
  text-align: center;
}
.section .content {
  justify-content: center;
}
.content img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.content p {
  max-width: 600px;
}
.features {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}
.features div {
  text-align: center;
}

.footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
}
.footer a {
  color: rgb(255, 238, 0);
  text-decoration: none;
}
.footer img {
  width: 120px;
  height: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  padding: 5%;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
}