@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  height: 100vh;
  background-image: url(img/BMW1.png);
  background-size: cover;
  background-position: center;
  padding: 20px 10%;
  transition: background-image 0.3s ease-in;
}

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 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-size: 24px;
  font-weight: 600;
}

.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 div.red {
  background: red;
}
.color-select div.blue {
  background: blue;
}
.color-select div.black {
  background: black;
}
