* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f8f8f8;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 15px 50px;
  background: rgba(71, 20, 20, 0.7803921569);
  color: white;
}
.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
}
.navbar .nav-links li {
  margin: 0 30px;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}
.navbar .nav-links li a:hover {
  color: #ffd700;
}

header {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80");
  background-size: cover;
  color: white;
  text-align: center;
}
header .header-content {
  margin-top: 240px;
  max-width: 600px;
}

.container {
  padding: 65px 0;
}
.container .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.container .cards .card {
  background: white;
  width: 500px;
  height: 400px;
  margin: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(150, 41, 41, 0.1);
  text-align: center;
}
.container .cards .card .card-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  margin-bottom: 15px;
}
.container .cards .card .img-one {
  background-image: url("https://images.unsplash.com/photo-1543352634-99a5d50ae78e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2071&q=80");
}
.container .cards .card .img-two {
  background-image: url("https://images.unsplash.com/photo-1657299170932-e75407883a6a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80");
}
.container .cards .card .img-three {
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2053&q=80");
}
.container .cards .card .img-four {
  background-image: url("https://images.unsplash.com/photo-1543352634-99a5d50ae78e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2071&q=80");
}
.container .cards .card .img-five {
  background-image: url("https://images.unsplash.com/photo-1657299170932-e75407883a6a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80");
}
.container .cards .card .img-six {
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2053&q=80");
}
.container .cards .card .card-title {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}
.container .cards .card p {
  color: #992222;
  font-size: 15px;
  margin-bottom: 15px;
}
.container .cards .card .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  background: #ff5733;
  transition: background 0.3s ease;
}
.container .cards .card .btn-primary:hover {
  background: #771616;
}

footer {
  text-align: center;
  padding: 35px;
  background: #471414;
  color: white;
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */
