body,
html {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  color: rgb(255, 255, 255);
  font-family: var(--Myfont);
}

.VentanaModal {
  display: flex;
  height: 100vh;
}

.LogoCenter {
  flex: 1;
  height: 33.3%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.containertxt {
  text-align: center;
  height: 33.3%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--DarkBackground2);
}

.logo_pixel {
  flex: 1;
  height: 33.3%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo_Karting {
  height: 150px;
}

.timing_img {
  height: 50px;
}

/* responsive */

@media screen and (max-width: 746px) {

  #logo_Karting,
  .timing_img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
}

@media screen and (max-height: 746px) {

  #logo_Karting,
  .timing_img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }

  .LogoCenter {
    height: 40%;
  }

  .containertxt {
    height: 20%;
  }

  .logo_pixel {
    height: 40%;
  }
}