@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

h1{
    max-width: 555px ;
    width: 100%;
    margin: auto;
    font-family: 'Bebas Neue', sans-serif;
}

.image-container {
    display: flex;
    flex-direction: column;
    height: 500px;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .ch {
    width: 100px;
    height: 100px;
    position: relative;
    left: 0;
    transition: left 0.5s linear ;
}


#ch1 {
    background: url('./assets/gif/1.gif');
    background-size: contain;
    transform: scaleX(-1)
}
#ch2 {
    background: url('./assets/gif/2.gif');
    background-size: contain;
    transform: scaleX(-1)
}
#ch3 {
    background: url('./assets/gif/3.gif') no-repeat;
    background-size: contain;
}
#ch4 {
    background: url('./assets/gif/4.gif');
    background-size: contain;
}

#finish-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.road {
    background: url('./assets/gif/road.gif');
    background-size: contain;
    height: 100px;
}

#winner-stats{
    display: flex;
    justify-content: space-around;
}

#winner-container{
    width: 250px;
    height: 250px;
    position: absolute;
    left: 38%;
    z-index: 1;
    top: 10%;
    background: white;
    border-radius: 50%;
    flex-direction: column;
    align-items: center;
}

#winner-image{
    width: 250px;
    height: 200px;
}

#winners-stats{
    display: flex;
    max-width: 1200px;
    justify-content: center;
    gap: 30px;
    margin: auto;
}

#bet-form{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#runner-images img {
    width: 100px;
    height: 100px;
}

footer{
    position: absolute;
    height: 50px;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
}

.github img{
    height: 40px;
    width: 40px;
}

.rsschool{
    width: 80px;
}

.date{
    font-family: roboto;
    font-size: 20px;
}