@charset "UTF-8";

* {
    margin:  0;
    border:  0;
    padding: 0;
    outline: 0;

    list-style:      none;
    text-decoration: none;
    text-rendering:  optimizeLegibility;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-font-smoothing: subpixel-antialiased;
    -moz-font-smoothing: subpixel-antialiased;
    -ms-font-smoothing: subpixel-antialiased;
    -o-font-smoothing: subpixel-antialiased;

    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

*:not(:defined) {
    display: none;
}

/*color de de ocio*/
:root {
    --accent: #68c9c8;
    --bg: #282828;
}

h1 {
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-weight: bold;
    font-weight: 900;
    font-family: 'Oxanium', sans-serif;
    color: #5DC1B9;
    background-color: rgba(49, 49, 49, 0.5); /* color y transparencia */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%23585858' fill-opacity='0.05'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 82%; /* ancho */
    padding: 0 10%; /* padding */
    border-radius: 4px;
    backdrop-filter: blur(4px);
    animation: animate 2s infinite;
  }

  h1:hover {
    transform: translateX(-50%) scale(0.95); /* pequeño cuando le pasas encima */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* sobra cuando es presionado */
  }

body {
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%23585858' fill-opacity='0.05'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    
    
}

::selection {
    background: none;
    
    
}

tabs-list {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: cover;
    overflow: hidden; /* Evita que el blur se salga del contenedor */
}

tabs-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../img/sunny3.gif);
    background-repeat: repeat;
    background-size: cover;
    filter: blur(5px); /* Ajusta el nivel de desenfoque*/
    z-index: -1; /* El fondo detrás*/
}



