@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #e5e5e5;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  background-color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
}

header a {
  color: #fff;
  text-decoration: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 70px;
}

.brand {
  font-size: 28px;
  font-weight: 700;
}

.green {
  color: #22b14c;
}
.white {
  color: #fff;
}
.red {
  color: #fc200c;
}

/* MAIN */
.main-section {
  display: flex;
  gap: 20px;
  padding: 30px;
}

.promo-box,
.ranking-box {
  background: #fff;
  border-radius: 12px;
  flex: 1;
  padding: 20px;
  height: 480px;
  box-sizing: border-box;
}

.promo-box {
  background-image: url("../img/delivery.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.promo-text {
  color: #fc200c;
  font-size: 28px;
  font-weight: bold;
  padding: 20px;
}

.promo-text span {
  color: white;
  font-size: 28px;
}

.ranking-box h2 {
  color: #fc200c;
  font-size: 26px;
  text-align: center;
  margin-bottom: 40px;
}

.ranking-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.ranking-box {
  background: #fff;
  border-radius: 12px;
  flex: 1;
  padding: 20px 40px;
  height: 480px;
  box-sizing: border-box;
}

.list-container h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.pizza-list li {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ranking-image {
  width: 180px;
}

footer {
  background-color: #222;
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  color: white;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
}

footer a {
  color: white;
  text-decoration: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
