.board {
    padding: 34px;
    background: #C9B79A;
    border-radius: 8px;
    box-shadow: inset 0 0 0 8px #B29E7C, inset 0 0 0 9px rgba(38, 48, 31, 0.35);
}

.note {
    background: #fbf7ec;
    box-shadow: 0 6px 14px #26301f38;
    border: none;
    transition:transform .18s ease;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

.note:nth-child(1) {
    transform: rotate(-3deg);
}
.note:nth-child(2) {
    transform: rotate(2deg);
}
.note:nth-child(3) {
    transform: rotate(2deg);
}
.note:nth-child(4) {
    transform: rotate(-3deg);
}

.note img {
    width: 200px;
    height: 150px;
}

.note .tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 52px;
    height: 20px;
    background: rgba(214, 160, 60, 0.55);
    border: 1px solid rgba(214, 160, 60, 0.7);
}

.note:hover {
    transform: translateY(-3px) rotate(0deg) !important;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (min-width:300px) {
    .tape {
        display: none;
    }
    .board-grid {
        display: grid;
        gap: 20px;
    }
    .note > span, .steps {
        display: block;
    }
}

@media (min-width: 780px) {
    .board-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}