.visor_conteudo {
    display: none;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 75%;
    position: absolute;
    text-shadow: 1px 1px 2px rgb(150, 167, 124), 0 0 1em rgb(150, 167, 124), 0 0 0.2em rgb(150, 167, 124);
    color: var(--terminalText);
    font-family: vt323;
    animation: 1s fadeIn steps(10);
}


.conteudo_titulo {
    position: absolute;
    left: 0;
}

.conteudo_titulo h1 {
    font-size: 106px;
    margin: 0;
}

.conteudo_titulo p {
    font-size: 37px;
    margin: 0;
}

.repositorio {
    width: 100%;
    position: absolute;
    height: 95%;
    bottom: 30px
}

.repositorio_header {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    height: 50%;
    width: 100%;
    align-items: center;
    order: 1;
}

.repositorio_image {
    width: 100%;
    height: 100%;
    background: purple;
    position: relative;
    order: 2;
    box-shadow: 1px 1px 2px rgb(150, 167, 124), 0 0 1em rgb(150, 167, 124), 0 0 0.2em rgb(150, 167, 124);
}

.repositorio_image .image_filter {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #00e70069;
    position: absolute;
}

.repositorio_image img {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.repositorio_image,
.repositorio_image * {
    border-radius: 10px;
}

.repositorio_description {
    width: 300px;
    height: 50%;
    text-align: center;
    font-size: 21px;
    position: absolute;
    bottom: 0;
}

.repositorio_description .divisor {
    margin-top: 10px;
    justify-content: center;
    font-size: 74px;
    height: 5px;
    align-items: center;
    display: flex;
    text-align: center;
}

.repositorio_description p {
    padding: 0 10px;
    margin: 20px auto;
    width: 255px;
    text-align: left;
}

.repositorio_header-titulo {
    font-size: 60px;
    line-height: 40px;
    text-align: center;
    margin: 0 0 8px 0;
}

.repositorio_header-tools {
    font-size: 25px;
    text-transform: uppercase;
}

.repositorio_header-links {
    text-decoration: none;
    display: flex;
}

.repositorio_header-links * {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    width: 48px;
    border-radius: 100%;
    margin: 0 15px;
    color: var(--terminalText);
    z-index: 1;
}

.repositorio_header-links *>* {
    margin: 0 15px;
    font-size: 55px;
}

#a,
#b {
    right: -660px;
}




/* Animações */
.rightToCenter {
    animation: 1s rightToCenter steps(24);
    animation-fill-mode: forwards;
}

@keyframes rightToCenter {
    0% {
        right: -660px
    }

    100% {
        right: 0px
    }
}

.centerToRight {
    animation: 1s centerToRight steps(24);
    animation-fill-mode: forwards;
}

@keyframes centerToRight {
    0% {
        right: 0px
    }

    100% {
        right: -660px
    }
}

.leftToCenter {
    animation: 1s leftToCenter steps(24);
    animation-fill-mode: forwards;
}

@keyframes leftToCenter {
    0% {
        left: -660px;
    }

    100% {
        left: 0px
    }
}

.centerToLeft {
    animation: 1s centerToLeft steps(24);
    animation-fill-mode: forwards;
}

@keyframes centerToLeft {
    0% {
        left: 0px
    }

    100% {
        left: -660px;
    }
}