.centrado{
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;
    box-sizing: border-box;
}

.centrado2 {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding: 40px;
  box-sizing: border-box;
}

/*///////////////////////////////////////////////////////////////*/

.indexclass {
    background-image: url(/fondos/Mononoke\ Hime.gif);
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: brightness(0.5);


    margin: 0;
    min-height: 100vh;
    overflow: hidden;

    color: white;
}

.bigcontainer{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 30px;
    width: 700px;
}

.bigcontainer p{
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
    outline: 2px solid white;
    font-size: 24px;
    font-family: 'VT323', monospace;
}

.tag{
    width: 700px;
    height: auto;
    animation: flotar 3s ease-in-out infinite;
    transition: transform 0.2s ease-out;}
/*///////////////////////////////////////////////*/

.everything{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;

    gap: 60px;

    width: 100%;

    padding: 40px 0;
    box-sizing: border-box;
}

.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.room{
    background-image: url(fondos/KNF41024.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

    min-height: 100vh;
    
    background-color: #000000;
    color: aliceblue;
    font-family: "Silkscreen", sans-serif;
}

.listimages{
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buttonblock{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    justify-content: center;
    width: fit-content;
    height: fit-content;
    padding: 20px;
}

.blinkies{
    max-width: 90px;
    height: auto;
    transform: scale(1);
    z-index: 1;
    transition: transform 0.2s ease;
}

.blinkies:hover{
    transform: scale(1.2);
    z-index: 2;
}

.fanlist{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    width: fit-content;
    height: fit-content;
    padding: 10px;
}

.fanlisticons{
    max-width: 44.8px;
    height: auto;
    transform: scale(1);

    transition: transform 0.2s ease-out;
}

.fanlisticons:hover{
    transform: scale(1.2);
    cursor: pointer;
}

.blockwelcome{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    height: fit-content;
    padding: 20px;
}

.blockblackwhite{
    background-color: #000000c0;
    outline: 2px solid white;
}

.lugares{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lugaresimg{
    width: 300px;
    height: 80px;
    object-fit: cover;
    outline: 2px solid white;
    outline-style:dashed;

    filter: grayscale(100%) brightness(60%);
    transform: scale(1);
    transition: transform 0.2s ease-out, filter 0.2s ease-out;
}

.lugaresimg:hover{
    transform: scale(1.1);
    filter: grayscale(0%);
    cursor: pointer;
}

.monkeyyproto{
    margin-top: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.protogen {
    width: 17%;
    position: absolute;
    top: 27%;
    left: 37%; 
}

.video{
    width: 99.5%;
    aspect-ratio: 16 / 9;
}

/*///////////////////////////////////////////////*/
.flotar{
    animation: flotar 5s ease-in-out infinite;
}

@keyframes flotar {
    0% {transform: translateY(0px);}
    50% {transform: translateY(-10px);}
    100% {transform: translateY(0px);}
}

/*///////////////////////////////////////////////*/

.artroom{
    background-image: url(fondos/charctersbg.png);
    background-size: cover;
    background-color: black;
    background-attachment: fixed;
    color: white;
    font-size: 16px;
    font-family: "Silkscreen", sans-serif;
}

.iconsart{
    width: 200px;
    height: auto;
    outline: 2px solid white;
    transform: scale(1);
    filter: grayscale(2) brightness(0.6);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.iconsart:hover{
    transform: scale(1.1);
    filter: grayscale(0) brightness(1);
    cursor: pointer;
}

.entryart{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.sonas{
    display: grid;
    width: 900px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5px;
}

.everythinginart{
    position: relative;
    width: 900px;
    height: 100vh;
}

.minitexto{
    text-align: center;
    height: 58px;
}

/*///////////////////////////////////////////////*/

@media (max-width: 900px){

    .everything{
        flex-direction: column;
        align-items: center;
    }

    .sonas{
        grid-template-columns: repeat(2, 1fr);
    }

    .buttonblock{
        grid-template-columns: repeat(2, 1fr);
    }

    .blockwelcome{
        width: 90%;
    }

    .lugaresimg{
        width: 100%;
        max-width: 300px;
    }

    .iconsart{
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 500px){

    .sonas{
        grid-template-columns: 1fr;
    }

    .buttonblock{
        grid-template-columns: 1fr;
    }

    .everything{
        gap: 20px;
    }

    body{
        font-size: 12px;
    }
}

img{
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px){

    .centrado{
        align-items: flex-start;
    }

}

/*///////////////////////////////////////////////*/

.aboutpage{
    background-image: url(fondos/minecraftbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000000;
    color: white;
    font-family: "share tech mono", monospace;
    font-size: 18px;

    min-height: 100vh;
}

.blockabout {
    padding: 30px;
    width: 800px;
}

.rowblock{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: fit-content;
    gap: 30px;
}

.aboutext{
    display: flex;
    flex-direction: column;
    text-align: flex-start;
}

.columnblock{
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

/*///////////////////////////////////////////////*/
.Blogging{
    background-image: url(fondos/water.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000000;
    color: white;
    font-family: "share tech mono", monospace;
    font-size: 16px;

    min-height: 100vh;
}

.everythingb{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 30px;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}

.blockblog{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: 900px;
    height: 400px;
    padding: 20px;

    overflow: auto;
}

.blockblog h1 {
    font-size: 20px;
}

.volver{
    position: absolute;
    top: 1px;
    left: 20px;
    font-size: 30px;
}

.everythingb p a{
    text-decoration: none;
    color: white;
}

.everythingb a:hover {
    color: #ff4f4f;
}

.notfound {
  background-image: url('varios/jungle.jpg');
  color: white;
  overflow: hidden;
}

.notfound a {
  color: crimson;
}

.notfound a:hover {
  color: white;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}