body {
	overflow: hidden;
    width: 100%;
    background-color: blue;
	background-image: url('../img/back.jpg');
	background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: Montserrat;
}

.container {
	width: auto;
    display: flex;
    flex-direction: column;
}

.layer {
    background-color: rgba(1, 78, 250, 1);
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: 0;
    width: 100%;
    height: 100%;
}

ul {
	width: auto;
    list-style-type: none;
}

.ribbon {
    height: auto;
    z-index: 3;
    width: auto; /* Asegura que la cinta ocupe todo el ancho del contenedor */
}

.element {
    width: 30vw; /* Asegura que los elementos ocupen todo el ancho del contenedor */
    height: 5vh;
    margin: 0 0 12px;
    padding: 9px 39.8px 9px 30px;
    border-radius: 10px;
    background-color: #fff;
	display: flex; /* Activa el modelo flexible */
    align-items: center; /* Centra verticalmente el contenido */
}

.element:hover {
    opacity: 1;
	cursor: pointer;
}

.element span a {
    font-family: Montserrat;
    font-size: auto;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 3;
    letter-spacing: normal;
    text-align: center;
    color: rgba(1, 78, 250, 1);
    text-decoration: none;
	padding-left: 2vw;
}

.element i {
    color: rgba(1, 78, 250, 1);
}

.element span img {
    width: 0px;
    height: 0px;
}
.logo {
	z-index: 3;
	margin-left: 15px;
	opacity: 1;

}
.logo img{
	margin: 0;
	padding: 0;
	max-height: 20vh;
    height: auto; /* Mantiene la proporción del logo */
    width: auto; /* Permite que el ancho sea automático y se ajuste al tamaño del logo */
}

.footer {
    background-color: white;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 20vw; /* Asegura que el pie de página ocupe todo el ancho del contenedor */
    font-size: 1.5vh;
    height: 2vh;
    text-align: center;
    padding-top: 2px;
    border-top-left-radius: 15px;
	color: rgba(1, 78, 250, 1);
}
