@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@keyframes breathe {
    0%, 100% { transform: scale(1); box-shadow: 0px 0 10px 3px rgba(90, 90, 169, 0.5) }
    50% { transform: scale(1.1); box-shadow: 0px 0 50px 3px rgba(90, 90, 169, 0.5) }
  }
html, body {
    background-color: #1a1a2b;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
  }

  /* Лого дышалка */
    .logo {
    animation: breathe 10s infinite;
    font: 700 Arial, sans-serif;
    color:#ffffff;
    transition: transform 1s ease-out;
    transform-origin: center;
    text-align: center;
    width: 190px;
    padding: 10px;
    margin: 16px auto;
    background-color: #3b3b5a;
    border: 3px solid #5a5aa9;
    box-shadow: 0 0 30px rgba(90, 90, 169, 0.5);
    border-radius: 10px;
}

/* Кто знает, что это значит */
  .introduce{
    
    font-family: manrope;
    font-size: 20px;
    color:#ffffff;
    transition: transform 1s ease-out;
    transform-origin: center;
    margin-left: 43%;
    margin-top: 200px ;
    text-align: center;
    width: 180px;
    padding: 40px;
    background-color: #3b3b5a;
    border: 3px solid #5a5aa9;
    box-shadow: 0 0 30px rgba(90, 90, 169, 0.5);
    border-radius: 100px;
    
  }
.introducetitle{
    font-size: 30px;
    text-align: center;
  }
  .introduce:hover {
    transform: scale(1.1); box-shadow: 0px 0 50px 3px rgba(90, 90, 169, 0.5)
  }

  /* ГОНКИ
 canvas{
  position: absolute;
  bottom: 0;
}


canvas {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

/* ФИНИШ СТАРТ 
.vertical-line {
  border-left: 2px solid rgb(180, 171, 171);
  height: 100px;
  position: absolute;
  bottom:70px;
}
.start-line {
  left: 2%;
}
.finish-line {
  right: 2%;
}
.line-label {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
  color: rgb(255, 247, 247);
}
.start-label {
  left: 1%;
  bottom: 105px;
  writing-mode: vertical-rl;
}
.finish-label {
  right: 1%;
  bottom: 105px;
  writing-mode: vertical-rl;
}*/
