/*pagedoll*/

@keyframes emerge {
    from {
        transform: translateY(120%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pagedoll{
    position:fixed;
    bottom:0;
    animation: emerge 1.2s ease-out forwards;
}

.pagedoll img {
    width:80%;
}


@media (max-width: 1150px) {

.pagedoll{display:none;}
}


/*pagina*/

*{
    box-sizing: border-box;
}
body{
  font-family: 'Press Start 2P', sans-serif;
  /*background-image:url("https://i.imgur.com/iDe6zlz.png");*/
  background-color:rgb(12, 27, 13);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  color:rgb(255, 255, 255);
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.8px;
  line-height: 2;
}


.box{
    margin:auto;
    width:80%;
}

.blinks{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    border-radius: 10px;
}
.blinks a {
    margin-top:10px;
    margin-left: 5px;
    margin-right: 5px;
    padding:10px;
    border-radius: 20px;
    background-color:rgb(87, 82, 101);
    box-shadow: 5px 5px 15px 5px #000000;
    border: 4px outset #F0CE45;

}

.container {
    width:100%;
    margin:auto;
   /* height:95vh;*/
}

.content{
    display:flex;
  /*  height:100%;*/
}

.banner{
height:150px;
padding:10px;
display:flex;
justify-content:space-between;
background-image:url('https://i.imgur.com/bggMKQw.png');
background-size:cover;
background-repeat:no-repeat;
background-position:center;
border-radius: 10px;
}

.main{
    width:80%;
    margin-top:10px;
}

.left{
    padding:10px;
    display:block;
    width:20%;
    margin-right:10px;
    margin-top:10px;
    border-radius: 10px;
}

.right{

height:100%;
    padding:100px;
    overflow:visible;
    border-radius: 10px;
}


/*colores y bordes*/

.left, .right, .banner {
    background-color:rgb(87, 82, 101);
}



/* colores y estilos de texto*/
a{
    color:rgba(240, 206, 69, 0.859);
}

a:hover{
    color:rgb(245, 242, 248);
}

ul{
    padding:9px;
}


/*rss feeds*/

.feed-title, .agallery.feed-item-desc, .agallery p, .agallery .feed-item-title{
    display:none;
}

.agallery, .pgallery{
    column-count:1;
    max-width:100%;
}
.agallery img, .pgallery img {
    max-width:100%;
    height:auto;
}
.textpost{
}

/**/
@media (min-width: 1150px) {
.banner{
    height:250px;
}
}