/* Página */

* {
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Efecto VHS */

.vhstextura {
    transition: none;

    height: 100vh;
    width: 100vw;

    position: fixed;

    background-attachment: fixed;
    background-image: url("../assets/Patronvhs.jpg");
    background-position: left center;
    background-repeat: repeat;
    background-size: 3px;

    pointer-events: none;
    visibility: visible;
    mix-blend-mode:soft-light;
    z-index: 303;

    animation-name: parpadeo;
    animation-duration: 0.2s;
    animation-iteration-count: infinite;
}

/* Fuentes */
.scheherazade-new-regular {
  font-family: "Scheherazade New", serif;
  font-weight: 400;
  font-style: normal;
}

.scheherazade-new-medium {
  font-family: "Scheherazade New", serif;
  font-weight: 500;
  font-style: normal;
}

.scheherazade-new-semibold {
  font-family: "Scheherazade New", serif;
  font-weight: 600;
  font-style: normal;
}

.scheherazade-new-bold {
  font-family: "Scheherazade New", serif;
  font-weight: 700;
  font-style: normal;
}

.rozha-one-regular {
  font-family: "Rozha One", serif;
  font-weight: 400;
  font-style: normal;
}

/* v Barra navegador v */

.barraventana {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-content: center;

    width: 100%;
    height: 23px;

    background-color: rgb(255, 0, 85);
    /* Bordes estilo */
    box-shadow: inset #ffb2c47f 3px 3px,
                inset rgba(115, 22, 42, 0.321) -3px -3px;

    padding: 1px;
}

.titulobarra {
    align-self: center;

    color: #ffffff;

    font-size: 15px;
    font-family: "Scheherazade New", serif;

    margin-left: 5px;

    overflow: hidden;
}

.contitems {
    display: flex;
    flex-direction: row-reverse;

    justify-content: row;
    align-self: flex-end;

    height: 100%;
    width: auto;

    overflow: hidden;
}

.iconobarra {
    size: 1vw;

    margin-left: 2px;
}

/* Botones */

.botonvolver {
    cursor: url("/assets/Cursor/CursorClick.png"), pointer;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-self: center;

    height: 30px;
    width: auto;

    border: 1px solid #ffffff;
    background-color: rgb(255, 0, 72);
    color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.375);

    text-align: center;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.677);
    text-decoration-line: none;
    font-weight: bold;
    font-family: "Scheherazade New", serif;

    padding-left: 7px;
    padding-right: 7px;
    margin: 10px;
}

.botonvolver:hover {
    box-shadow: white 0px 0px 20px;

    transform: scale(1.2);
}


/* Titulo */

.titulo {
    width: 100%;

    color: rgb(255, 255, 255);

    font-size: 2.5vh;
    letter-spacing: 3px;
    text-align: center;

    animation-name: tituloefecto;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    font-family: "Rozha One", serif
}

