body{
    background-color:#ffffc9;
    font-family: Candara;
    font-weight: bold;
}
h1 {
    text-align: center;
}
h2 {
    text-align: center;
}

.separador{
    background-color: #d9ce89;
}

footer {
    text-align:center;
    background-color: #ebdf95;
}

.centrado {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------Botones----------------------- */

.button {
    background-color: #edc537;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    margin:10px;
    cursor: pointer; /* Cambiar el icono del mouse al estar sobre el botón */
    font-family: inherit;
}
.button:hover {
    background-color: #ed912d; /* Green */
    color: #FFFFFF;
}

.small-btn {
    /*width: 50px;
    height: 30px;*/
    font-size: 12px;
}

.medium-btn {
    font-size: 18px;
    padding: 0px;
    border:4px solid #c237cd
}

.big-btn {
    font-size: 25px;
    width: 50vw;
}

/*------------------------Juegos----------------------- */

.juegos{
    margin-top: 50px;
    text-align: center;
}

.contenedor {
  position: relative;
  top: 0;
  left: 0;
  width:150px;
  height:150px;
  display: inline-block;
 border-radius: 15px;
}

.recuadro {
  position: relative;
  top: 0;
  left: 0;
  display: grid;
}
.contenido {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  image-rendering: pixelated;
}

/*------------------------Enlaces----------------------- */
.link{
    margin-left: 20px;
    text-decoration:none;
    color:#7a540e;
}

.link:hover{
    color:rgb(48, 14, 183);
    box-shadow: 4px 4px 5px #523b5b;
    text-shadow: 3px 3px 10px #523b5b;
}

.categorias {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100px;
    height: calc(100vh - 70px);
    z-index: 7;
}

.categorias #verticalCategoriesNav {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 16px 0 20px 0;
    flex-direction: column;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow-anchor:none;
    background-color: #10106d;
    box-sizing: border-box;
    transition: margin .4s ease-in-out;
}

.enlaceCategoria
{
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 18px;
    width: 200px;
    height: 34px;
    text-decoration:none;
}

.enlaceCategoria:hover
{
    /*color: #efeb21;*/
    background-color: #ed912d;
}

/*
.link:visited{
    color:rgb(214, 47, 128);
}

a:hover{
    background-color: cyan;
}
*/


/*------------------------Canvas----------------------- */

.columnaIzq {
  float: left;
  width: 20%;
  height: 100vh;
  padding: 10px;
}

.columnaDer {
  float: right;
  width: 20%;
  padding: 10px;
}

.controles {

  padding: 10px;
}

canvas{
    margin-top:30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.descripcion {
    background-image: url('../assets/sky.png');
    background-size: 100% 100%;
    padding: 5%;
    text-align: center;
}

.fondo{
    background-image: "assets/star.png";
    filter: blur(6px);
}

.animado {
  animation-name: gradiente;
  animation-duration: 4s;
  animation-iteration-count:infinite;
  animation-timing-function: linear;
  position:relative;
}

@keyframes gradiente {
    0% {
        left:0px;
        rotate:0deg;
        }
    50% {
        left:85vw;
        rotate:720deg;
        }
    100%{
        left:0px;
    }
}

figcaption{
    text-align: right;
}

/*
@keyframes gradiente {
  from {
    background-color: red;
    left:0px;
    }
  to {
    background-color: yellow;
    left:100px;
    }
}
*/