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

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #20232a;
}

.logo {
    font-size: 1.5rem;
    color: #61dafb;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: #61dafb;
    text-decoration: none;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    background: url('monza-race-start.avif') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    background-color: rgba(0, 0, 0, 0.5); /* Adds transparency for readability */
    padding: 10px;
    border-radius: 5px;
}

.hero p {
    color: black; /* Style for tagline text */
}

.car-image-section {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.car-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

.about, .team {
    padding: 40px 20px;
    text-align: center;
}

.about h2, .team h2 {
    font-size: 2rem;
    color: #20232a;
    margin-bottom: 20px;
}

.sponsors {
    text-align: center;
    padding: 20px;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.sponsor-logo {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #20232a;
    color: #61dafb;
}

.footer .social-icons a {
    color: #61dafb;
    margin: 0 10px;
    text-decoration: none;
}
.about-section {
    padding: 40px 20px;
    text-align: center;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #20232a;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
}

.about-image-placeholder {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.about-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.sponsors-section {
    padding: 40px 20px;
    text-align: center;
}

.sponsors-section h1 {
    font-size: 2.5rem;
    color: #20232a;
    margin-bottom: 20px;
}

.sponsor {
    display: flex;
    align-items: center;
    margin: 30px 0;
    text-align: left;
}

.sponsor-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sponsor-image {
    max-width: 150px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sponsor-info {
    flex: 2;
    padding: 0 20px;
}

.sponsor-info h2 {
    font-size: 1.8rem;
    color: #20232a;
    margin-bottom: 10px;
}

.sponsor-info p {
    font-size: 1rem;
    line-height: 1.6;
}
