body {background-color: goldenrod;    
}
.head {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title_jockey_club {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100vh;
    width: 70vh; /* Ajuste a largura conforme necessário */
    height: 20vh; /* Ajuste a altura conforme necessário */
    background-color: #f51919; /* Def. a cor vermelho  */
    border-radius: 50% 50% 50% 50%; /* forma oval */
    overflow: hidden;
    position: relative;
}
.h1_title {
    width: 400px;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 2.5rem; /* Ajuste o tamanho da fonte conforme necessário */
    color: #f7ae04; /* Defina a cor do texto*/
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: fantasy;
    font-weight: 400;
}
@media (max-width: 767px) {
    .title_jockey_club {
        max-width: 80vw; /* Largura máxima de 80% da largura da tela em dispositivos móveis */
        height: 30vh; /* Altura de 30% da altura da tela em dispositivos móveis */
    }
    .h1_title {
        font-size: 4vw; /* Tamanho da fonte maior em dispositivos móveis */
    }
}
.menu_nav_head {
    list-style-type: none;
    display: flex;
    padding: 0;
    justify-content: center;
    gap: 80px;
}
.menu_nav_head li button {
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;     
}
.btn_head {
    width: 180px;
    border-radius: 14px;
    border-top: 4px solid #000000a5;
    border-right: 4px solid #000000a5;
    pointer-events:visiblePainted;
    font-size: 16px;
    font-weight: 700;
    background-color: rgb(255, 236, 139);
}
.btn_head:hover {
    background-color: rgb(255, 238, 0);
    color:rgb(105, 93, 93);
    transition: all 0.3s ease-in;
    transform: scale(1.05);
    cursor: pointer;
}
.btn_aposta {
    width: 100px;
    height: 40px;
    border-radius: 14px;
    border-top: 4px solid #000000a5;
    border-right: 4px solid #000000a5;
    pointer-events:visiblePainted;
    font-size: 16px;
    font-weight: 700;
    background-color: rgb(255, 236, 139);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_aposta:hover {
    background-color: rgb(255, 238, 0);
    color:rgb(105, 93, 93);
    transition: all 0.3s ease-in;
    transform: scale(1.05);
    cursor: pointer;
}
.lista_input {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0px;
}
.container_aposta {
    
    width: 100%;
    height: 160px;
    background-color: rgba(0, 0, 0, 0.082);
    display: flex;
    flex-direction: column;
    align-items: center;

}
input {
    width: 250px;
    height: 25px;
}
.row {
    display: flex;
    direction: row;
    gap: 10px;
}
.row_space {
    height: 100px;
    width: 100%;
}
.mainSection {
    background-color: #0000000f;
}

.machine {
    text-align: center;
}

.machine__display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.machine__slot {
    border: 4px solid #e3b008;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    width: 110px;
    margin: 6px 5px;
}

.machine__slot-icon {
    width: 80%;
}

.message {
    height: 40px;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px #fff, 0px 0px 0 2px #fff;
    border: 5px dotted #e91e63;
    padding: 5px 0;
    max-width: 320px;
    margin: 0 auto;
}

.message span {
    font-size: 1.2rem;
}

.message span b {
    color: #cf4040;
    text-shadow: 0px 0px 10px #ff000051;
}

.button {
    margin-top: 18px;
    height: 30px;
    width: 100px;
    background-color: #ffcb00;
    border: none;
    border-radius: 30px;
    box-shadow: 1px 5px #e91e6200;
}

.button:active {
    box-shadow: 1px 3.5px #e91e622d, 2px 2px 20px 6px #ffcb00;
    transform: translateY(2px);
}

@media (min-width: 768px) {

.header__title {
    font-size: 2.3rem;
}

.header__logo {
    height: 70px;
}
.machine {
    padding: 15px 0;
}

.machine__display {
    flex-direction: row;
}   

.machine__slot {
    height: 30vh;
    width: 30vw;
}

.machine__slot-icon {
    max-width: 165px;
}

.message {
    margin: 25px auto;
    height: 60px;
    max-width: 400px;
    padding: 9px 0;
}

.message span {
    font-size: 1.6rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.button {
    width: 200px;
    height: 40px;
    border-radius: 14px;
    border-top: 4px solid #000000a5;
    border-right: 4px solid #000000a5;
    pointer-events:visiblePainted;
    font-size: 16px;
    font-weight: 700;
    background-color: rgb(255, 236, 139);
}
.button:hover {
    background-color: rgb(255, 238, 0);
    color:rgb(105, 93, 93);
    transition: all 0.3s ease-in;
    transform: scale(1.05);
    cursor: pointer;
}
}

@media (min-width: 1024px) {
.machine__slot {
    width: 20vw;
    height: 50vh;
    border-width: 5px 13px;
    margin: 0 20px;
}}
.div_jackpot {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 46px;
    font-family: fantasy;
}