/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Centrar en pantalla */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

/* Contenedor principal */
.container {
    width: 400px;
    height: 300px;
    background-color: #1f2a9d;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Filas */
.top-row,
.bottom-row {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

/* Cuadrados */
.square {
    width: 50px;
    height: 50px;
    background-color: #6ec1c3;
}

/* Círculos */
.circle {
    width: 50px;
    height: 50px;
    background-color: #d462a6;
    border-radius: 50%;
}