body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #D9042B; 
  color: #FFFFFF; 
  width: 80%;
  margin: auto;
  height: 100vh;
}

header {
  text-align: center;
  background-color: #025949;
  padding: 10px;
  font-size: 24px;
}

footer {
  background-color: #025949; 
  padding: 10px;
  font-size: 14px;
  margin-top: 3%;
  text-align: center;
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.club-info, .club-trophies, .supporter-culture {
  background-color: rgba(0, 0, 0, 0.8); 
  border-radius: 10px;
  padding: 20px;
  width: 300px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin: 1%;
  margin-left: 120px; 
  margin-right: auto;
}

.club-info:hover, .club-trophies:hover, .supporter-culture:hover {
  transform: scale(1.05); 
  background-color: #D41C28; 
}

@media (max-width: 768px) {
  .club-info, .club-trophies, .supporter-culture {
      width: 100%; 
  }
}

main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

img:hover {
  transform: scale(1.05);
}

.p {
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
}

nav {
  text-align: center;
  font-size: 20px;
}