/*RESET*/


*{
	text-decoration: none;
	box-sizing: border-box;
	outline: none;
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

/*Mis variables*/

:root{
    --color-bg: #fff;
    --color-bg2: #ddd;
    --color-txt: #000;
    --color-txt2: #fff;
}
body{
    background: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.max-width-1200px{
    max-width: 1200px;
}
.center{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}
li{
    list-style: none;
}
a {
    color: inherit;        /* Hereda el color del elemento padre */
    background: none;      /* Quita el fondo */
    display: inline;       /* Asegura que se comporte como un enlace */
    font: inherit;/* Hereda la fuente del elemento padre */
}
.a_hover:hover{

    color: var(--color-link-hover);      /* Cambia el color del texto al color de fondo */
    border-bottom: var(--color-link-hover) 1px solid;  /* Agrega un borde inferior al color de fondo */
}
h1,h2,h3,h4,h5,h6{ /* Estilos para los títulos Modificar dependiendo de el tipo de letra que desea utilizar*/
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.title{
    width: 100%;
    text-align: center;
    margin: 20px 0px;
}
.main_section{
    height: 50%;
}
img{
    width: 100%;
    height: 100%;
}

/* Horizontal-Menu */
.nav_vertical-menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 80%;
    margin: auto;
    gap: 5px;
}
.vertical-menu_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    width: 100%;
    height: 45px;
    background: var(--color-bg2);
}
.nav-text{
    font-family: Arial, Helvetica, sans-serif;
}
.button-enter{
    background: var(--color-bg);
    color: var(--color-txt);
    padding: 5px;
    border-radius: 2px;
}