body {
    background-color: beige;
    display: flex;
    flex-direction: column;
}

p {
    color: green;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    text-align: center;
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 19px;
}

h2 {
    color: blueviolet;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 35px;
}

h3 {
    color: black;
    text-align: center;
    font-size: 20px;
}


.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}


.container {
    background-color: #f4f4f9; /* Fondo suave */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.col-md-4 {
    background-color: #e6e6ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
}
