*{
    box-sizing: border-box;
}

html{
scroll-behavior: smooth;
}

body{
    font-family: sans-serif;
    margin: 0;
}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}


header{
    display: flex;
    min-height: 70px;
    background-color:blueviolet;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo{
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo img{
    height: 50px;
    margin-right: 10px;
}

nav a{
    font-weight: 600;
    padding-right: 10px;
}
nav a:hover{
    color: gold;
}


.informacion-contacto {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center; /* Centra el texto dentro del div */
    width: 300px;
}

.informacion-contacto h2 {
    color: #333;
    margin-bottom: 20px;
}

.informacion-contacto p,
.inform

footer{
    background-color: rgb(230, 230, 230);
}

footer p{
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
}

footer{
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}