h1{
    margin: 30px 0 30px 0;
}

.grow{
    transition: all .2s ease-in-out;
}

.grow:hover{
    transform: scale(1.1);
    color: white;
    background-color: rgb(175, 26, 44);
    font-weight: bold;
    letter-spacing: 2px;
}

main div.dashboard {
    margin: auto;
    width: 70%;
    height: 350px;
}

main div.dashboard ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
}

main div.dashboard ul li {
    text-align: center;
    padding: 20px;
    width: 33%;
    height: 69%;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(231,34,56);
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

main div.dashboard ul li#hour{
    background-image: url('../img/clock.png');
    background-position: center 46px;
    background-repeat: no-repeat;
    background-size: 127px;
}
main div.dashboard ul li#penalty{
    background-image: url('../img/penalty.png');
    background-position: center 46px;
    background-repeat: no-repeat;
    background-size: 127px;
}
main div.dashboard ul li#cloud{
    background-image: url('../img/cloud.png');
    background-position: center 46px;
    background-repeat: no-repeat;
    background-size: 127px;
}
main div.dashboard ul li#beach{
    background-image: url('../img/beach.png');
    background-position: center 46px;
    background-repeat: no-repeat;
    background-size: 127px;
}

main div.dashboard ul li a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: capitalize;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 44px;
}

main div.dashboard ul li img{
    height: 90px;
}

footer {
    display: none;
}