/* Tela de play */
.tela_play{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), #005bb5);
    background-color: #007aff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    transition: 1s;
    flex-direction: column;
    justify-content: space-around;
    z-index: 10;
}
.tela_play_animation{
    top: 100vh!important;
}
.tela_play button.play{
    background-image: url('../image/play.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    height: 100px;
    width: 100px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.tela_play button.play:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.letter {
    font-size: 48px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 80px;
    padding: 10px;
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.instrucao{
    background-color: rgba(255, 255, 255, 0.2);
    color:white;
    padding: 18px;
    margin: 10px 20% 0px 20%;
    border-radius: 12px;
    width: 200px;
    text-align: center;
}
.instrucao button, #modal_baixar button{
    background: linear-gradient(145deg, #5ac8fa, #007aff);;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    font-family: 'nunito', 'helvetica';
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.instrucao button:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
button.ajuda {
    position: absolute;
    left: calc(50% - 120px);
    height: 25px;
    width: 25px;
    padding: 0px;
    margin: 0px;
    border-radius: 40px;
    font-size: 14px;
}
button.baixar {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 5px 10px;
    border-radius: 40px;
    font-size: 14px;
    background: linear-gradient(145deg, #2eb750, #34c759);
    color: #ffffff;
    font-family: 'nunito', 'helvetica';
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.letter-w {
    background-color: #ff3b30;
}
.letter-o {
    background-color: #ff9500;
}
.letter-r {
    background-color: #34c759;
}
.letter-d {
    background-color: #004aad;
}

/*mobile*/
@media (max-width: 768px) {}

.img_play_foguete{
    position: absolute;
    right: 20px;
    top: 220px;
    height: 200px;
    width: auto;
}

.img_play_lapis{
    position: absolute;
    height: 150px;
    left: 30px;
    bottom: 40px;
    width: auto;
}