.ventanaModalTutorial {
    margin: 5rem;
    /* padding: 2rem; */
    background-color: white;
}

.Zoom{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.comorotar{
    margin-bottom: 2rem;
}
.simulacion-zoom{
    margin-bottom: 2rem
}

h1,h2,h3{
    color: #020887;
}

#iralfinal{
    font-size: medium;
    color: #020887;
    text-decoration: underline;
    cursor: pointer;
}

.prueba_zoom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle {
    margin-top: 2rem;
    position: absolute;
    left: 80%;
}

.mouse {
    width: 100px;
    height: 180px;
    border: 4px solid #020887;
    border-radius: 60px;
}

.mouse::before {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    top: 30px;
    background-color: rgb(2, 8, 135);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 1;
    animation: mouse 2s infinite;
}

@keyframes mouse {
    from {
        opacity: 1;
        top: 30px;
    }

    to {
        opacity: 0;
        top: 150px;
    }
}

.rotar {
    display: flex;
    justify-content: center;
}

.mouse-rotar {
    margin-top: 2rem;
    position: absolute;
    left: 80%;
}

#mouse-rotar {
    width: 100px;
    height: 180px;
    border: 4px solid #020887;
    border-radius: 60px;
    display: flex;
    animation: move-rotation 6s infinite;
}

#mouse-rotar .left-button {
    width: 50px;
    margin-left: -4px;
    margin-top: -3px;
    height: 100px;
    border: 4px solid #020887;
    border-radius: 60px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

#mouse-rotar .right-button {
    width: 50px;
    margin-right: -4px;
    margin-top: -3px;
    height: 100px;
    border: 4px solid #020887;
    border-radius: 60px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
    background-color: #020887;
}


@keyframes move-rotation {

    0%,
    100% {
        transform: translate(-3%, -3%);
    }

    25% {
        transform: translate(-3%, -3%) translateY(-40px);
    }

    50% {
        transform: translate(-3%, -3%) translateX(-40px);
    }

    75% {
        transform: translate(-3%, -3%) translateY(40px);
    }
}

.mover{
    display: flex;
    justify-content: center;
}


.shift-key {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #020887;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    user-select: none;
    animation: press-key 6s infinite;
}

.shift-key .key-text {
    font-size: 12px;
    color: white;
}


.mouse-mover {
    margin-top: 2rem;
    left: 80%;
}

.Indicaciones{
    display: flex;
    align-items: center;
    gap: 55px;
    margin-top: 2rem;
    position: absolute;
    left: 75%;
}

#mouse-mover {
    width: 100px;
    height: 180px;
    border: 4px solid #020887;
    border-radius: 60px;
    display: flex;
    animation: move-rotation 6s infinite;
}

#mouse-mover .left-button-mover {
    width: 50px;
    margin-left: -4px;
    margin-top: -3px;
    height: 100px;
    border: 4px solid #020887;
    border-radius: 60px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    background-color: #020887;
}

#mouse-mover .right-button-mover {
    width: 50px;
    margin-right: -4px;
    margin-top: -3px;
    height: 100px;
    border: 4px solid #020887;
    border-radius: 60px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
}
@keyframes press-key {
    0% {
      transform: translateY(0) scale(1);
      box-shadow: none;
    }
    25% {
      transform: translateY(3px) scale(0.8);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
      transform: translateY(0) scale(1);
      box-shadow: none;
    }
    75% {
      transform: translateY(1px) scale(0.94);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    100% {
      transform: translateY(0) scale(1);
      box-shadow: none;
    }
  }
  

.glowscript-canvas-wrapper {
    border: 2px solid #020887;
    padding: 2rem;
}

.botonversim{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.botonversim button{
    background: #020887;
    border: none;
    padding: .8rem 2rem;
    border-radius: 10px;
}
.botonversim button  a{
    color: white;
}