/*
(c) Redalan Net
 */ 


html,body {
    box-sizing: border-box;
    background-color: black;
    width: 98vw;
    height: 99vh;
    margin: 0;
    padding: 0;
    font-family: 'NovaMono', monospace;
}

table {
    width: 100%;
    height: 100%;
    font-size: 2.5vmin;

}

table td {
    width: 100%;
    height: 100%;
}
.logo {
    background: url("/pub/img/logo_ra.svg") no-repeat;
    background-size: contain;
    width: 40vmax;
    height: 40vmax;
    text-align: left;

}
.text {
    position: relative;
    width: auto;
    left: 16%;
    height: 40px;
    top: 84%;
    color: dodgerblue;
}

p {
    display: inline-block;
    vertical-align: top;
    margin: 0;
}



.word {
    position: absolute;
    width: auto;
    opacity: 0;
}

#subslogan {
    padding-right: .5em;
}

.letter {
    display: inline-block;
    position: relative;
    float: left;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    transform: rotateX(-90deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wisteria {
    color: #8e44ad;
}

.belize {
    color: #2980b9;
}

.pomegranate {
    color: #c0392b;
}

.green {
    color: #16a085;
}

.midnight {
    color: #2c3e50;
}

#cargando {
    width: 0.3em;
    height: 7em;
    display: block;
    border: 1px solid #3399ff;
    border-radius: 5px;
    position: relative;
    visibility: hidden;
    transition: visibility .5s;
    left: 1em;
}

#cargado {
    width: 100%;
    height: 0%;
    display: block;
    background-color: #00ff00;
    transition: height 2s;
    position: absolute;
    bottom: 0px;


}

#ramenu {
    top: 0;
    right: 2em;
    width: 30vw;

    background: transparent;
    position: fixed;


}

#ramtoc {
    display:none;
}

#ramopciones {
    display: flex;
    height: 100vh;
    flex-flow: column;
    flex-wrap:nowrap;
    justify-content:space-around;
    align-items:flex-end;
    align-content:flex-end;



}

#ramopciones div {
    width: 100px;
    height: 100px;
}

#ramopciones div > a {
    display: block;
    width: 100px;
    height: 100px;
    font-size: 1em;
    text-align: center;
    vertical-align: center;
    line-height: 100px;
    text-decoration: none;
    color: white;
    opacity: .4;
    transform: scale(1);
    transition: all .5s;
}

#ramopciones a:hover {
    cursor: pointer;
    opacity: 1;
    transform: scale(1.1);

}

#ramopciones div:first-child a:hover {
    box-shadow:
            0 0 .5rem #fff,
            inset 0 0 .5rem #fff,
            0 0 2rem var(--rablue),
            inset 0 0 2rem var(--rablue),
            0 0 4rem var(--rablue),
            inset 0 0 4rem var(--rablue);
}

#ramopciones div:nth-child(2) a:hover {
    box-shadow:
            0 0 .5rem #fff,
            inset 0 0 .5rem #fff,
            0 0 2rem var(--rared),
            inset 0 0 2rem var(--rared),
            0 0 4rem var(--rared),
            inset 0 0 4rem var(--rared);
}

#ramopciones div:nth-child(3) a:hover {

    filter: drop-shadow(0px 0px 8px var(--rayellow));
}

#ramopciones div:first-child a {
    border-radius: 50%;

}

#ramopciones div:nth-child(2) a {

}

#ramopciones div:nth-child(3) a svg {
    position: relative;
    top: 0;
    left: 0;


}

#ramopciones div:nth-child(3) a label {
    position: relative;
    top: -120px;
    color: white;
    cursor: pointer;
    font-size: .8em;

}


#ramopciones > div > pre {
    display: block;
    position: absolute;
    width: 30em;
    left: 1em;
    color: grey;
    white-space: pre-wrap;
    font-family: monospace;
    font-size: .8em;
    opacity: 0;
    transform: scale(.5);
    transition: all 1s ease;

}

#ramopciones > div:hover > pre {
    opacity: .8;
    transform: scale(1);


}

#ramopciones div:nth-child(1) pre {
    color: #6ecdff;
}

#ramopciones div:nth-child(2) pre {
    color: #ff8d8e;
}

#ramopciones div:nth-child(3) pre {
    color: #c8c800;
}

@media (max-width: 1200px) {
    #ramopciones > div:hover > pre  {
        display: none;
    }
}


@media (max-width: 600px) {
    #ramopciones {
        flex-direction: row;
        align-items:flex-start;
        flex-wrap: nowrap;
        justify-content:space-around;
        zoom: .8;
    }

    #ramenu {
        top: 1em;
        left: 1em;
        width: 100vw;
        height: 20vh;

    }


}

@media (max-width: 800px) {
    #ramopciones {
        zoom: .7;
    }
    #ramenu {
        height: 99vh;
    }

}