@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

/*------------------ CUERPO ----------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f11;
    scrollbar-width: thin;
    scrollbar-color: #000000 transparent;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-thumb {
    background-color: #7b00ff;
}

/*------------------ HEADER ----------------------------------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #18181b;
    min-height: 70px;
    color: #ffffff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    border-bottom: #000 2px solid;
}

.header-barra {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    margin: 0 20px auto;
}

.header-menu {
    margin: auto 20px auto;
}

.logo {
    max-height: 50px;
    margin-right: 10px;
    transition: transform 0.5s;
}

.header-logo:hover img {
    transform: scale(1.05);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #7a09f2;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0e0e10;
    min-width: 150px;
    z-index: 1;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin-top: 1px;
}

.titulo-Logo {
    display: flex;
    flex-direction: column;
}

.titulo-Logo a {
    text-decoration: none;
    color: inherit;
}

.titulo-Logo h1 {
    margin: 0;
    line-height: 1;
    font-family: 'Lilita One', sans-serif;
}

.titulo-Logo h1:first-child {
    font-size: 18px;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: -2px;
}

.titulo-Logo h1:last-child {
    font-size: 28px;
    font-weight: normal;
    color: #7a09f2;
    margin-top: -2px;
}

/*------------------ FOOTER ----------------------------------- */


footer {
    background-color: #18181b;
    color: #ffffff;
    width: 100%;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    z-index: 90;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.144);
    border-top: #000000 2px solid;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*------------------ ICONOS DE REDES ----------------------------------- */

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-left: 10px;
}

.social-icon .iconify {
    font-size: 22px;
    color: #ffffff;
    transition: color 0.3s;
}

.social-icon.twitter:hover .iconify {       /* Twitter */
    color: #1DA1F2;
    transform: scale(2);
}

.social-icon.youtube:hover .iconify {       /* Youtube */
    color: #FF0000;
}

.social-icon.instagram:hover .iconify {       /* Instagram */
    color: #be33b0;
}

.social-icon.twitch:hover .iconify {       /* Twitch */
    color: #7a09f2;
}

.social-icon.discord:hover .iconify {       /* Discord */
    color: #0068c9;
}

.social-icon.facebook:hover .iconify {       /* Facebook */
    color: #2037ff;
}

.social-icon.tiktok:hover .iconify {       /* TikTok */
    color: #FF0000;
}

.social-icon.email:hover .iconify {       /* Email */
    color: #58d8ff;
}

/*------------------ PAGINA DE INICIO ----------------------------------- */

.bloque1 {
    position: relative;
    margin-top: 120px;
    height: 300px;
    width: 60%;
    min-width: 800px;
    border-radius: 5px;
    color: #fff;
    background: #121213;
    margin-left: auto;
    margin-right: auto;
    background-image: url('/images/FotoMontevideo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

.bloque1 h3 {
    position: relative;
    display: flex;
    font-size: 2em;
    font-weight: 100;
    color: #fff;
    max-width: 800px;
    font-family: 'Lilita One', sans-serif;
    bottom: -190px;
    left: 20px;
}

.bloque1 h4 {
    position: relative;
    display: flex;
    font-size: 5em;
    font-weight: 100;
    color: #fff;
    max-width: 800px;
    font-family: 'Lilita One', sans-serif;
    left: 20px;
    margin-top: 170px;
}

.bloque1 img {
    color: #fff;
    filter: brightness(30%);

}

#twitch-embed {
    margin-top: 20px;
    height: 350px;
    width: 60%;
    border-radius: 5px;
    color: #fff;
    background: #121213;
    margin-left: auto;
    margin-right: auto;
    min-width: 800px;
    border: #1b1b20 1px solid;
    padding: -20px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

.chat_twitch {
    transform: scale(0.8);
    bottom: 0;
    margin-left: -5%;
    margin-top: -35px;

}

