*   {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1 {
    font-size: 1.3em;
    color: #ffffff;
}
h2 {
    font-size: 1.2em;
    color: #0d0f05;
    text-shadow: 0 0 5px #a4ccf5;
}
h3 {
    font-size: 0.9em;
    color: #1010e7;
}
h4 {
    font-size: 0.8em;
    color: #0c0a57;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 0px;
    text-align: center;
    height: 5vh;
}
header h4 {
    margin-top: 4px;
    margin-right: 10px;
    font-size: 0.7em;
    color: #a393ff;
}
ul {
    list-style-type: none;
    padding: 0;
}

#logo {
    margin-left: 5px;
    width: 70px;
    height: 40px;
}
#logo img {
    width: 100%;
    height: 100%;
}

#contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    height: 80%;
    margin-left: 10px;
}

#servicios {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

#contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    font-size: 0.7em;
}









footer {
    font-size: 0.8em;
    position: fixed;
    bottom: 0;  
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}