.list_notes { display: flex; flex-flow: row wrap; align-items: flex-start; justify-content: space-around; article { transition: all .2s ease-in-out; color: #DDD; margin: 0; padding: 6px 8px; border-radius: 7px; background-color: #000000CA; box-shadow: 2px 1px 1px 0px rgba(0, 0, 0, 0.2); max-width: 215px; font-size: 0.875rem; cursor: pointer; &:hover { transform: scale(1.1) translate(0, -5px) rotate(-0.5deg); box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.2); } h1 { color: #EEE; font-size: 1rem; margin: 0; } } } tag { background-color: #A8DC; display: inline-block; margin: 2px; padding: 3px; color: white; }