body {
    background: #fdf2f4;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
}

.muro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.muro-title {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 40px;
}

.grid-mensajes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.nota {
    width: 200px;
    min-height: 200px;
    padding: 20px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: rotate(var(--rotation));
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nota:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
}

.nota p {
    font-family: 'Indie Flower', cursive;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
}

.nota span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: right;
    display: block;
    margin-top: 10px;
}

.btn-regresar {
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
    color: #d81b60;
    font-weight: bold;
    border: 2px solid #d81b60;
    padding: 10px 20px;
    border-radius: 20px;
}