﻿.postit {
    background: #fffec8;
    border: 2px solid #e0d000;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 700px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
}

    .postit .title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

.list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.list-item {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}
.social-icons a i {
    color: #343a40 !important;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #495057; /* tom mais claro ao passar o mouse */
}