*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "IBM Plex Sans Thai", sans-serif;
    margin: 0;
    background-color: #121212;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: white;
    
}

/* Header css */

header{
    background-color: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

header h1{
    margin: 0;
    letter-spacing: 0px;
}

.container{
    max-width: 1400px;
    margin: auto;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;  
    align-items: center; 
}

.container-nav{
   font-weight: 600;
   font-size: 1.3rem;
   width: 200px;
   
}


.container-nav ul{
    margin: 0;
    list-style: none;
    display: flex;
   
}

header a{
    text-decoration: none;
    color: white;
    padding: 0px 10px;
    
}

header a:hover{
    color: #d4d4d4;
}


.container-redes{
    visibility: hidden;
    width: 200px;
}


/* Header css */





.container-legal{
    max-width: 800px;
    margin: auto;
}

.container-legal{
    display: flex;
    flex-direction: column;
}

.container-legal h3,h1{
    text-align: center;
}






/* SECTION FOOTER */

.resources-section{
    background-color: #121415;
}

.resources-container h1{
    font-size: 15px;
    color: white;
}

.resources-container{
    display: flex;
    justify-content: center;
    align-items: start;
    max-width: 1200px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.219);
    
}

.resources, .legal, .socials, .logo{
    width: 300px;
}

.resources-container ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0;
    margin: 0;
}

.resources-container a{
    text-decoration: none;
    color: rgb(194, 194, 194);
    font-size: 12px;
}


.resources, .legal, .socials, .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    margin-top: 10px;
    width: 150px;
    
    
}


.socials{
    display: flex;
    flex-direction: column;
}

.socials h1{
    margin-bottom: 5px;
}

#discordbanner{
    border-radius: 10px;
    width: 250px;
    
}

footer{
    color: rgb(194, 194, 194);
    background-color: #121415;
}

.footerdemrda{
    max-width: 1200px;
    margin: auto;
    
}

/* Footer */

/* BOTON PARA SUBIR */

#btnSubir {
    display: none; /* Ocultar el botón inicialmente */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #fee122;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
  }
  
  #btnSubir:hover {
    background-color: rgb(231, 202, 15);
    box-shadow: 0 0 20px rgba(255, 251, 0, 0.808); /* Cambiar sombra al pasar el cursor */
  }

  /* BOTON PARA SUBIR */