body {
  margin: 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px 10px 40px;

  background: rgb(18, 19, 21);
  background: linear-gradient(
    180deg,
    
    rgb(0, 0, 0) 25%,/*
    rgba(18, 19, 21, 1) 30%,*/
    rgba(10, 10, 44, 1) 60%,
    rgba(1, 0, 66, 1) 89%
    
    /*rgba(18, 19, 21, 1) 100%*/
  );

}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

.butchery-name {
  margin-left: 10px;
  color: #ffffff; /* Font color */
}

.butchery-name .company-name {
  font-family: "rubik", Courier, monospace;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
}

.butchery-name .company-branch {
  font-family: "rubik", Courier, monospace;
  font-size: 18px;
  margin-top: 0;
}

.navigation ul {
  list-style: none;
}

.navigation ul li {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}

.navigation ul li:last-child {
  margin-right: 0;
}

.navigation ul li a {
  text-decoration: none;
  color: #ffffff; /* Font color */
  font-size: 18px;
  font-weight: 600;
  font-family: "poppins", Courier, monospace;
}

.navigation ul li a:hover {
  color: #ff0000; /*  Red color on hover */
  transition: 0.4s;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media a {
  margin: 10px;
}

.social-media img {
  height: 30px;
  width: auto;
}

/* ------------------  iPad Pro size (1024 x 1366) ------------------  */
@media (max-width: 1024px) {
  .container {
    flex-direction: row;
    align-items: center;
    padding: 0px 20px 0px 20px;
  }

  .navigation ul li a {
    font-size: 14px;
  }

  .butchery-name .company-name {
    font-size: 22px;
  }

  .butchery-name .company-branch {
    font-size: 16px;
  }
}

/* ------------------  iPad size (768 x 1024) ------------------  */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 0px 20px 0px 20px;
  }

  .logo {
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .navigation {
    margin-top: 00px; /* Reduce margin */
  }

  .navigation ul li a {
    font-size: 18px;
  }

  .navigation ul li {
    display: inline-block;
    margin: 0.5em 0.5em 0.5em 0.5em;
  }

  .butchery-name .company-name {
    font-size: 28px;
  }

  .butchery-name .company-branch {
    font-size: 20px;
  }

  .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #ffffff;
  }

  .content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content h2 {
    font-size: 24px;
    margin-top: 30px;
  }

  .content p {
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .content ul {
    padding-inline-start: 0px;
  }

  .content .navigation ul li {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
