body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
    background-color: #1d1681;
}
.seccion {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.seccion2 {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h2 {
    color: #2c3e50;
    text-align: center;
}
input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}
button {
    background-color: #3498db;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s;
}
.resultado {
    margin-top: 15px;
    padding: 10px;
    background-color: #e8f4fc;
    border-radius: 4px;
}
.figura {
    width: 100px;
    height: 55px;
    margin: 20px auto;
    background-color: #e6060600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.figura2{
    width: 100px;
    height: 55px;
    margin: 20px auto;
    background-color: rgba(83, 183, 241, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.figura img{
    margin-top: 20px;
    width: 100px;
    height: 55px;
}
.figura2 img{
    margin-top: 20px;
    width: 95px;
    height: 97px;
}