/*general*/
body {
    margin: 0;
    background: linear-gradient(left, purple, rgb(191, 0, 191));
    display: flex;
    flex-direction: column;
}
/*navegador*/
nav {
    position: fixed;
    width: 100%;
    background-color: #fb0;
    height: 96px;
    display: flex;
    flex-direction: row;
    z-index: 10;
}
#nav_logo {
    margin-top: 8px;
    height: 96px;
    transform: translate(50px, 0px);
}
#nav_logo img {
    height: 80px;
    transform: scale(1.2);
}
/*nav - direcciones*/
#nav_directionsContainer {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: row;
    width: 170px;
    justify-content: space-around;
    align-self: center;
}
.nav_direction {
    font-family: "Lilita One";
    color: white;
    font-size: 33px;
    font-weight: 900;
    letter-spacing: -2px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    text-decoration: none;
}