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

:root {
  --black: #333;
  --main-color: #00bcd5;
  --secound-color: #27ae60;
  --orange: rgb(226, 136, 18);
  --red: #f0003c;
}

@font-face {
  font-family: "very-punk";
  src: url(../assets/fonts/VeryVeryPunkFont-ZpZ0K.ttf);
}

@font-face {
  font-family: "main-font";
  src: url(../assets/fonts/Serati-nAjp0.ttf);
}

html {
  font-size: 10px;
  font-family: "main-font", sans-serif;
}

body {
  background-color: #f4f4f4;
  height: 100vh;
}

.display-none {
  display: none !important;
}

.display-flex {
  display: flex;
}

.button {
  border: none;
  border-radius: 4px;
  width: 190px;
  height: 64px;
  background-color: white;
  font-family: "main-font", sans-serif;
  font-weight: 400;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 100ms ease-in-out;
  text-transform: uppercase;
  cursor: pointer;

  &:hover {
    background-color: var(--main-color);
  }
}

.gameOver {
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-container {
  width: 600px;
  height: 16px;
  margin: 16px auto;
  background-color: #fff;
  border-radius: 8px;
  /* overflow: hidden; */
  position: relative;
}
.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 8px;
  background-color: var(--secound-color);
  transition: width 0.1s;
}

.progress-drive {
  background-color: var(--main-color);
}

#carIcon {
  font-size: 32px;
}
