body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: whitesmoke;
    font-family: 'Arial', sans-serif;
    color: #333;
}

h1, h5, h6 {
    color: #343a40;
}

p, li {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

header {
    text-align: center;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #343a40;
}

header h1 {
    font-size: 100%;
    margin: 30px;
}

.contenedor_texto {
    justify-content: center;
    margin: 15px 0;
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    background-color: rgba(132, 148, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contenedor_texto:hover {
    transform: translateY(-5px); 
}

h5, h6 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

p, li {
    margin-bottom: 10px;
}

ul, ol {
    margin-left: 20px;
}

.container {
    margin-top: 30px;
}
.row {
    display: flex;
    align-items: stretch;
}
.col-sm-3, .col-sm-6 {
    display: flex;
    flex-direction: column;
}