::-webkit-scrollbar{
    display: none;
}

#landscape{
    display: none;
    z-index: -100;
}

@media(max-width: 768px) and (orientation: landscape){
    #landscape{
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left:0;
    background-image: url(../../img/fondo.jpg);
    z-index: 990000;
    width: 100%;
    height: 100vh;
    text-shadow: -1px -2px 1px black;
    color: #e5e5e5;
    text-align: center;
    align-items: center;
    justify-content: center;
    }
}

.ir-arriba {
	display: none;
	padding: .5rem .75rem;
    background: -webkit-linear-gradient(to top, #000, #040a0a, #071413, #0f2b28, #071413, #040a0a, #000);
    background: linear-gradient(to bottom, #000, #040a0a, #071413, #0f2b28, #071413, #040a0a, rgba(0,0,0,.025));
	font-size: 1.5rem;
    color: #e5e5e5;
    font-weight: bold;
	cursor: pointer;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
    opacity: .9;
    border-radius: .3125rem;
    border: .03125rem solid rgba(255,255,255,.125);
    box-shadow: 0 0 .5rem #687ff2;
    z-index: 200;
}

.ir-arriba:hover {
    color: #687ff2;
    opacity: 1;
    border: .03125rem solid rgba(255,255,255,.25);
}

@media screen and (max-width: 499px){
    .ir-arriba {
        bottom: 4rem;
    }
}