@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
:root {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

a {
  font-size: 14px;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

body {
  background-color: hsl(0, 0%, 83%);
}

*:has(> .container) {
  display: flex;
  justify-content: center;
}

.container {
  width: min(1200px, 90%);
}

header {
  width: 100%;
}
header .brand {
  background-color: hsl(0, 8%, 5%);
  height: 3.5rem;
}
header .brand .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .brand .container img {
  height: 70%;
}
header .navbar {
  background-color: hsl(60, 100%, 60%);
  height: 3.5rem;
}
header .navbar nav {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar nav ul {
  display: flex;
  gap: 2rem;
}

main section.hero img {
  width: 100%;
}
main section.bikes {
  background-color: hsl(0, 0%, 100%);
}
main section.bikes article.bike-grid {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 2rem 4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 90%), 1fr));
  margin: 3rem 0rem;
}
main section.bikes article.bike-grid .bike {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
  text-align: center;
  width: 100%;
}
main section.bikes article.bike-grid .bike img {
  width: 90%;
}
main section.infomation {
  padding: 1rem 0rem;
}
main section.infomation .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  place-items: center;
}
main section.infomation .container article.info {
  width: 100%;
}
main section.infomation .container article.info .video img {
  width: 100%;
}
main section.infomation .container article.paragrafs {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
main section.infomation .container article.paragrafs .paragraf {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main section.infomation .container article.paragrafs .paragraf h4 {
  font-weight: 500;
}
main section.infomation .container article.paragrafs .paragraf p {
  font-weight: 300;
}

footer {
  background-color: hsl(0, 8%, 5%);
  padding: 1rem 0rem;
}
footer .grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: hsl(0, 0%, 50%);
}
footer .grid .item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
footer .grid .item .yellow {
  font-size: 14px;
  margin-bottom: 0.4rem;
  color: hsl(60, 100%, 60%);
}/*# sourceMappingURL=style.css.map */