body {
    margin: 0px;
    ;
    background-color: linear-gradient(90deg, #242222 0%, #242222 100%);
    /*font apple */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#contenido {
    width: 100%;
    height: 100%;
    background-color: #242222;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}

#ContentTetris {
    width: 560px;
    height: 500px;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
}

#FloatCredits {
    width: 300px;
    height: 100px;
    position: fixed;
    z-index: 2;
    left: calc(50% - (300px / 2));
    top: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#name {
    font-size: 40px;
    font-weight: lighter;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0px 0px 10px white;
}

#author {
    font-size: 22px;
    color: gray;
    text-shadow: 0px 0px 10px red;
}
#instruccions{
    font-size: 19px;
    color: gray;
    text-shadow: 0px 0px 10px red;
}
#ContentTetris {
    display: flex;
    justify-content: center;
    align-items: center;
}

#AreaJuego {
    flex: 1;
    width: 50%;
    height: 500px;

    background-color: rgb(41, 41, 41);
}

#AreaPuntuaAcion {
    width: 230px;
    height: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-items: center;
    align-items: center;
    padding-top: 30px;
    flex-direction: column;
}

.SimpleLabel {
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 10px;
}

.PuntosView {
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: red;
    ;
    margin-top: 20px;

}

.puntoViewC {
    width: 100%;
    min-height: 35px;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: lighter;
    border: 1px solid rgba(255, 255, 255, 0.096);
    background: linear-gradient(90deg, rgb(66, 30, 30), rgb(51, 51, 150))
}

.AreaButtons {
    border: 1px solid rgba(255, 255, 255, 0.089);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 10px;

}

.boton {
    width: 100px;
    height: 30px;
    background-color: rgb(73, 73, 73);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.boton:hover {
    background-color: rgb(51, 153, 194);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
    #FloatCredits {
        width: 300px;
        height: 100px;
        position: fixed;
        z-index: 2;
        top: 1%;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #instruccions{
        font-size: 13px;
        color: gray;
        text-shadow: 0px 0px 10px red;
    }
}
