@media screen and (max-width: 1640px) {
	.links {
		display: none;
	}
}
@media screen and (max-width: 1490px) {
	.wrapper {
		padding: 20px;
		width: 100%;
	}
	.header {
		padding: 0;
	}
}
@media screen and (max-width: 1430px) {
	.header-languages {
		margin-right: 20px;
	}
	.logo {
		margin-right: 20px;
	}
	.header__navigation {
		gap: 0 20px;
	}
}
@media screen and (max-width: 1260px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        margin: 5px auto; /* Centra el logo */
		transform: scale(1.5);
		align-items: center;
    }

    .header-languages {
        position: absolute;
        top: 10px;
        right: 20px;
		align-items: center;
    }
}
@media screen and (max-width: 1120px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        margin: 0 auto; /* Centra el logo */
		align-items: center;
    }

    .header-languages {
        position: absolute;
        top: 10px;
        right: 20px;
		align-items: center;
    }
}
@media screen and (max-width: 860px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        margin: 0 auto; /* Centra el logo */
		align-items: center;
    }

    .header-languages {
        position: absolute;
        top: 10px;
        right: 20px;
		align-items: center;
    }
}
@media screen and (max-width: 550px) {
    .server-container {
        width: 80%; /* Ocupa el 80% del ancho de la pantalla */
        margin: 0 auto; /* Centra el contenedor horizontalmente */
        box-sizing: border-box; /* Incluye padding y border en el ancho total */
		margin-bottom: 5rem;
    }
	.inform__list {
		width: 80%; /* Ocupa el 80% del ancho de la pantalla */
	}
    .server-about {
        width: 100%; /* Asegura que ocupe todo el ancho del contenedor padre */
        box-sizing: border-box; /* Incluye padding y border en el ancho total */
    }
}
