*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    /*ios specific
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    */
}

body {
    background: #333;
    color: white;
    text-decoration: none;
    width: 100vw;
    height: 100vh;
}

.header {
    width: 100%;
    height: 88px;
    text-align: center;
    background: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.home_icon {
    font-size: 2rem;
    color: white;
    left: 0;
    position: absolute;
    top: 26px;
    margin-left: 1rem;
}


.card_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    background: #444;
    width: 90%;
    height: 100px;
    display: block;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    cursor: pointer;
}

.img_icon {
    font-size: 3rem;
    position: relative;
    float: left;
    margin-top: 1.5rem;
    margin-left: 1rem;
}

.trash {
    position: relative;
    float: right;
    margin-right: 1rem;
    margin-top: .8rem;
}

.card h2{
    margin-top: 1rem;
}

