*{
    border: none;
    padding: 0;
     /*ios specific */
   -webkit-user-select: none;
   -webkit-tap-highlight-color: transparent;   
   -webkit-touch-callout: none;  
}

body{
    background-color: #2c3e50;
    overflow: hidden;
}

.wrapper{
    width: 100%;
    height: 100%;
    max-height: 640px;
    overflow-y: auto;
}

nav {
    width: auto;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.hamburger{
    float: left;
}

.hamburger i{
    font-size: 30px;
    color: white;
}

.profile{
    float: right;
}

nav img{
    width: 60px;
}

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

.item {
    background-color: #FFFFFF;
    width: calc(90% - 10px);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}


.item img{
    width: 50px;
}

.item i{
    font-size: 25px;
}

.button{
    padding-top: 20px;
    position: absolute;
    bottom: 12px;
    right: 20px;
}

.button i{
    font-size: 50px;
    color: white;
}

.button i:hover{
    color: #333333;
}

