:root {
  --tempBorder: solid red;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;

  height: 600px;
  background-color: azure;
  border-radius: 5%;
  margin-bottom: 30px;
}

.namer {
  margin-top: 20px;
  margin-bottom: 15%;
  font-size: large;
}

.banner {
  text-align: left;
  font-size: 60px;
  color: white;
  width: 100%;
  padding: 40px;
  padding-bottom: 90px;
}

body {
  display: flex;
  align-items: center;

  flex-direction: column;
  z-index: 1;
}

::-webkit-scrollbar {
  width: 0px;
}

html {
  overflow: auto;
  overflow-x: hidden;
}

/* Hide scrollbar for chrome */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* adds sticky bg */
.background {
  z-index: -1;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(rgba(153, 1, 172, 1), rgba(0, 212, 255, 1));
}

.labelInputGroup {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}

.buttonMargin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.previewWindow {
  margin: auto;
  display: flex;
  height: 300px;
  width: 500px;
  margin-top: 40px;
  border: solid black 2px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.carBody {
  width: 80%;
  height: 40%;
  background-color: gray;
  transition: all 1s;
  clip-path: polygon(
    0 75%,
    0 50%,
    25% 30%,
    40% 10%,
    70% 10%,
    85% 35%,
    100% 40%,
    100% 75%
  );
}

.sedan {
  clip-path: polygon(
    0% 75%,
    5% 40%,
    15% 35%,
    30% 10%,
    60% 10%,
    75% 30%,
    96% 40%,
    100% 75%
  );
}

.hatch {
  clip-path: polygon(
    10% 75%,
    15% 40%,
    25% 20%,
    35% 10%,
    70% 10%,
    85% 35%,
    93% 40%,
    95% 75%
  );
}

.wagon {
  clip-path: polygon(
    0% 75%,
    5% 20%,
    25% 10%,
    35% 10%,
    70% 10%,
    85% 35%,
    99% 40%,
    100% 75%
  );
}
.frontWheel {
  right: 17%;
}
.backWheel {
  left: 21%;
}
.wheel {
  background-color: black;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 30%;
  border-radius: 50%;
}

.wheel::after {
  display: block;
  content: "";
  background-color: grey;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
}

.wheel::before {
  display: block;
  content: "";
  background-color: black;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  z-index: 3;
  clip-path: polygon(
    20% 0%,
    0% 20%,
    30% 50%,
    0% 80%,
    20% 100%,
    50% 70%,
    80% 100%,
    100% 80%,
    70% 50%,
    100% 20%,
    80% 0%,
    50% 30%
  );
}
