*{
    margin:0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}
.container
{
    width: 100%;
    height: 100vh;
    background-image: url(images/BMW1.png);
    background-size: cover;
    background-position:center;
    padding: 20px;
}
nav{
    width: 100%;
    display: flex;
    align-items: center;
  justify-content: space-between;
}
nav .logo {
    width: 160px;
    cursor: pointer;
}
nav .btn {
    text-decoration: none;
    color: #fff;
    background: #333;
    padding: 15px 50px;
    border-radius: 30px;
}
.content
{
    margin-top: 10%;

}
.content p 
{
    max-width: 380px;
    font-weight:500 ;
    font-size: 14px;
    color: #555;
}
.content h2 {
    color:red;
    font-size: 34px;

}
.content h1 {
    font-size: 100px;
    color: #222;
    margin-top: -25px;
}
.content h3{
    margin-top: 30px;
    font-weight: 600;
    font-size: 24px;
}
.color-select div{
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-color: red;
}
.color-select #blue{
    background-color: blue;
}
.color-select #black{
    background-color: #000;
}
@media (max-width:400px)
{
    .container
{
    width: 100%;
    height: 100vh;
    background-image: url(images/BMW1.png);
    background-size: cover;
    background-position:center;
    font-size: 10px;  
}
nav .btn {
    text-decoration: none;
    color: #fff;
    background: #333;
    padding: 5px 30px;
    border-radius: 30px;
}
nav .logo {
    width: 100px;
    cursor: pointer;
}
.content p 
{
    max-width: 300px;
    font-weight:500 ;
    font-size: 12px;
    color: rgb(85, 82, 158);
}
.color-select div{
    background: #333;
    width:20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    
    }
    .content h1 {
        font-size: 100px;
        color: #222;
        margin-top: -25px;
    }

}