
/*.sticky ul, .sticky li {
    list-style: none;
}*/

.sticky ul {
    display: flex;
    flex-direction: row;
}

.sticky ul li{
    text-decoration: none;
    color: #000;
    display: block;
    height: 10.5em;
    width: 10em;
    padding: 1em;
    transform: rotate(5deg);
    margin-left: 1rem;
}

.sticky ul li h2 {
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.sticky ul li p {
    font-size: 1rem;
    font-family: cursive;
    margin: 0rem;
}

.sticky-yellow {
    background: #ffc;
}
.sticky-blue {
    background: #cfc;
}
.sticky-green {
    background: #cff;
}
.sticky-red {
    background: #fcf;
}

.sticky ul li:nth-child(even){
    transform: rotate(-7deg);
}

