* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: #000000;
}
.header #check {
  display: none;
}
.header .logo {
  font-size: 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Roboto", system-ui;
}
.header .icons {
  font-size: 2rem;
  right: 5%;
  color: #ffffff;
  cursor: pointer;
  display: none;
  position: absolute;
}
.header .navbar i {
  font-size: 1rem;
  color: #ffffff;
}
.header .navbar a {
  font-size: 1.15rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: "Roboto", system-ui;
  margin-left: 2.5rem;
}

.info {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.info .car {
  width: 90%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.info .car .text {
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info .car .text p {
  font-family: "Roboto", system-ui;
  text-align: center;
  font-weight: 400;
  color: #000000;
  font-size: clamp(15px, 1.5vw, 30px);
}
.info .car .run {
  width: 70%;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.info .car .run p {
  font-family: "Roboto", system-ui;
  font-weight: 400;
  color: #000000;
  font-size: clamp(15px, 1.5vw, 25px);
}

.buy {
  width: 100%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}
.buy .edit {
  width: 60%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.buy .edit h1 {
  color: #ffffff;
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: clamp(10px, 1.5vw, 20px);
}
.buy .edit p {
  font-family: "Roboto", system-ui;
  text-align: center;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(10px, 1.5vw, 20px);
  margin-top: 8px;
}

@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 880px) {
  .header #check:checked ~ .icons #menyu-icon {
    display: none;
  }
  .header #check:checked ~ .icons #close-icon {
    display: block;
  }
  .header .icons {
    display: inline-flex;
  }
  .header .icons #close-icon {
    display: none;
  }
  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: #000000;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s ease;
    overflow: hidden;
  }
  .header .navbar a {
    font-size: 1.1rem;
    text-align: center;
    margin: 0.8rem 1.5rem;
    transform: translateY(-50px);
    transition: 0.3s ease;
    color: #000000;
    opacity: 0;
  }
  .header #check:checked ~ .navbar {
    height: 17.7rem;
  }
  .header #check:checked ~ .navbar a {
    transform: translateY(0);
    transition-delay: calc(0.15s * var(--i));
    color: #ffffff;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */