*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.container{ /*Background image*/
    width: 100%;
    height: 100vh;
    background-image: url(images/BMW1.png);
    background-size: cover;
    background-position: center;
    padding: 20px 10%;
    transition: background-image 0.3s; /*This changes the images smoothly*/
}
/***** NAV *****/
nav{ /*Styling for nav*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{ /*Styling for nav logo*/
    width: 160px;
    cursor: pointer;
}
nav .btn{ /*Styling for nav button*/
    text-align: none;
    color: #fff;
    background: #333;
    padding: 15px 50px;
    border-radius: 30px;
}
.content{
    margin-top: 10%;
}
.content h2{
    color: red;
    font-size: 34px;
}
.content h1{
    font-size: 100px;
    color: #222;
    margin-top: 25px;
}
.content p{
    max-width: 380px;
    font-weight: 500;
    font-size: 14px;
    color: #555;
}
.content h3{
    margin-top: 30px;
    font-weight: 600;
    font-size: 24px;
}
.color-select div{ /*Styling for color selector*/
    background: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}
.color-select{
    display: flex;
    margin-top: 30px;
}
.color-select #red{
    background: red; 
}
.color-select #blue{
    background: blue; 
}
.color-select #black{
    background: black; 
}
/***** NAV END *****/