/* Global Styles */

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #e70000;
  transition: color 0.2s ease;
}

a:hover {
  color: #c40000;
}

nav {

}

/* Header Styles */

header {
  background-color: #e70000;
  color: white;
  padding: 40px;
  text-align: center;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.coca-cola.com/content/dam/journey/us/en/private/hero/hero-image.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

header h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  display: inline-block;
  margin-right: 40px;
  background-color: white;
  color: #c40000;
  border-radius: 10px;
  width: 200px;
}

header nav a {
  color: #c40000;
  transition: color 0.2s ease;
}

header nav a:hover {
  color: red;
}

/* Main Styles */

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  scroll-behavior: smooth;
}

main section {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  scroll-margin-top: 40px;
  transition: transform 0.5s ease;
}

main section:hover {
  transform: scale(1.05);
}

main section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

main section p {
  font-size: 20px;
  margin-bottom: 30px;
}

main section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

main section ul li {
  margin-bottom: 20px;
}

main section img {
  width: 300px;
  height: 200px;
  margin: 20px;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

main section img:hover {
  transform: scale(1.1);
}

/* Footer Styles */

footer {
  background-color: #e70000;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  font-size: 18px;
  margin-bottom: 20px;
}

footer a {
  color: white;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #c40000;
}