* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10%;
}
nav img {
  margin-left: 4%;
}
.button {
  border: none;
  background-color: #333;
  color: aliceblue;
  padding: 15px 25px;
  border-radius: 30px;
  cursor: pointer;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5%;
}
.content .header {
  font-size: 38px;
  font-weight: 600;
  color: #fa1818;
}
.content .model {
  padding: 5% 0;
  color: #333;
  font-size: 50px;
  font-weight: 600;
}
.description {
  max-width: 850px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
}
section {
  margin: 30px 10px;
}
section div {
  margin-top: 20px;
  margin-left: 20px;
  padding: 20px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #030303;
  border-radius: 50%;
}
div #white {
  background-color: #fff;
  border: black 1px solid;
}
div #blue {
  background-color: #0044ff;
}
div #grey {
  background-color: grey;
}

.images {
  width: 100%;
  height: 400px;
  background-image: url(images/bmw.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
@media (max-width: 1070px) {
  .content {
    height: 10%;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .button {
    padding: 10px 15px;
  }
  section div {
    width: 40px;
    height: 40px;
  }
  nav img {
    width: 150px;
  }
}
