.row-setter {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.row-setter2 {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.column-setter {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
}

.container {
    border: 1px black solid;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.622);
}

body {
    background-color: #63A6ED;
    background-image: url("/assets/img/background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Verdana;
}

header, footer {
    text-align: center;
    background-color: #bfdefe;
}

a {
    text-decoration: none; 
    color: rgb(0, 141, 166);
}

/* Cosas generales arriba */

.card {
    display: flex;
    flex-direction: column;
    border: black 1px solid;
    padding: 5px;
    background-color: #bfdefe;
    text-align: center;
}
/* Tarjeta de headmates arriba */

.BlogContainer {
    border: #63A6ED dotted 1px;
    background-color: aliceblue;
    padding: 5px;
}

.ShrineContainer {
    border: #63A6ED solid 1px;
    background-color: aliceblue;
    padding: 5px;
}

.warning {
    display: flex;
    flex-direction: row;
    border: red 3px solid;
    background-color: white;
    padding: 5px;
    gap: 5px;
    justify-content: center;
}