.home{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    gap: 10px;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
    z-index: 20;
}

.home > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.438);
    border-radius: 9px;
    box-sizing: border-box;
}

.home > div:hover{
    background-color: rgba(0, 0, 0, 0.151);
    cursor: pointer;
}