.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	background-color: #e4e4ea;
	text-decoration: none;
	font-size: 20px;
	font-family: "poppins";
}
#logo_arte_estilista {
	width: 85px;
	clear: both;
	float: left;
    margin-left: 14px;
    margin-top: 4px;
}
.construcción {
    text-align: center;
    margin: 0;
    padding: 0;
}
#logo_centro {
    margin: auto;
    width: 32%;
    display: block;
	border-radius: 25px;
    margin-top: 18px;
}
h1 {
	text-align: center;
	font-size: 34px;
}
nav {
    padding: 5px;
    margin: 0;
    margin-top: 8px;
    display: flex;
    justify-content: flex-end; /* Alinea todo a la derecha */
    align-items: center; /* Centra verticalmente los elementos */
    color: #000000;
    text-align: right;
	font-size: 14px;
}
nav a {
    border-top-color: #000;
    border-right-color: #000;
    border-bottom-color: #000;
    border-left-color: #000;
    text-decoration: none;
    color: #000000;
    text-align: center;
    height: auto;
    margin: auto;
    padding: 10px;
    position: relative; /* Necesario para el ::after */
    transition: color 0.3s;
}
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #850832;
    transition: width 0.3s;
}
nav a:hover {
    color: #850832;
}
nav a:hover::after {
    width: 100%;
}
#menu-button {
    display: none;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none; /* Oculto inicialmente */
	backdrop-filter: blur(10px);
}
#overlay.active {
    display: block; /* Mostrar fondo cuando el menÃº estÃ© abierto */
}
main {
    flex: 1 0 auto;
}
.fa-facebook-f{
    color: black;
    text-decoration: none;
    font-size: large;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    transition: color 0.3s; /* Agrega esta línea */
}
.fa-instagram{
    color: black;
    text-decoration: none;
    font-size: large;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    transition: color 0.3s; /* Agrega esta línea */
}
.fa-facebook-f:hover {
	color:#0866ff;
}
.fa-instagram:hover {
	color:#E1306C;
}
footer {
    width: 100%;
    display: block;
    margin: auto;
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
    flex-shrink: 0;
    background-color: rgb(77, 76, 76);
    color: white;
}
@media handheld, screen and (max-width:599px) and (min-width:300px) {
    #menu-button {
        background: none;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 24px;
        width: 30px;
    }
    .bar {
        width: 30px;
        height: 4px;
        background-color: #850832;
        border-radius: 5px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    #menu-button.open .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
        transform-origin: center;
    }
    #menu-button.open .bar:nth-child(2) {
        opacity: 0;
    }
    #menu-button.open .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
        transform-origin: center;
    }
    nav {
        display: none;
        flex-direction: column;
        background-color: #e4e4ea;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 100;
        margin-top: 60px;
    }
    nav.open {
        display: flex;
    }
    nav a {
        padding: 15px;
        text-align: center;
        font-size: 20px;
        display: block;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #logo_arte_estilista {
        margin-top: -55px;
        width: 60px;
    }
    #logo_centro {
        margin: auto;
        width: 80%;
        display: block;
        margin-top: 5%;
    }
    h1 {
        margin-top: 15%;
        font-size: 24px;
    }
    footer {
        font-size: 10px;
        margin-top: 10px;
    }
}

@media handheld, screen and (max-width:1350px) and (min-width:600px) {
    #logo_centro {
        width: 65%;
    }
    h1 {
        font-size: 28px;
    }
    nav a {
        font-size: 16px;
    }
}