body{
    font-family: sans-serif;
    padding: 20px;
    background-color: #afceec;
}
h1{
    margin-bottom: 50px;
}

/*Tarjetas*/
.tarjeta{
    background-color: rgb(174, 209, 135);
    padding: 20px;
    width: 100px;
    height: 70px;
    text-align: center;
    border-radius: 8px;
    margin: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: black 1px 1px 2px;
}

.contenedor-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
    gap: 30px;
    height: 90vh;
    border: 4px dashed black;
    background-color: whitesmoke;
    flex-basis: 120px;
}
.especial{
    background-color: #afceec;
    order: 8;
}

.tarjeta1{
    order: 1;
}

.tarjeta2{
    order: 2;
}

.tarjeta3{
    order: 3;
}

.tarjeta4{
    order: 4;
}

.tarjeta5{
    order: 5;
}

.tarjeta6{
    order: 6;
}

.tarjeta7{
    order: 7;
}

.tarjeta8{
    order: 8;
}