*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#111;
    color:white;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    position:absolute;
    width:100%;
    z-index:10;
}

.logo{
    font-size:32px;
    color:#d4af37;
    font-weight:bold;
}

nav a{
    color:white;
    margin-left:30px;
    text-decoration:none;
}

.hero{

    height:100vh;

    background:url("/images/718-porsche-spyder-2020-racingyellow.jpg") center center/cover;

    display:flex;
    align-items:center;
    justify-content:center;

}

.overlay{

    background:rgba(0,0,0,.55);

    padding:60px;

    border-radius:10px;

    text-align:center;

}

.hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.hero p{

    margin-bottom:35px;

    font-size:20px;

}

.search-box{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;

}

.search-box input{

    padding:15px;

    border:none;

    width:220px;

    border-radius:5px;

}

.search-box button{

    background:#d4af37;

    color:black;

    border:none;

    padding:15px 35px;

    cursor:pointer;

    font-weight:bold;

}

.featured{

    padding:80px;

}

.featured h2{

    text-align:center;

    margin-bottom:40px;

}

.cars{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.card{

    width:320px;

    background:#1a1a1a;

    border-radius:10px;

    overflow:hidden;

}

.card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.card h3{

    padding:20px;

}

.card a{

    display:block;

    margin:20px;

    background:#d4af37;

    color:black;

    text-decoration:none;

    padding:12px;

    text-align:center;

    border-radius:5px;

}

.features{

    padding:80px;

    background:#191919;

}

.features h2{

    text-align:center;

    margin-bottom:40px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.grid div{

    background:#252525;

    padding:30px;

    border-radius:8px;

}

footer{

    text-align:center;

    padding:40px;

    background:#000;

}