
#home-page .tag-points{
    float: right;
    height: 34px;
    min-width: 80px;
    border: 2px solid #ffa500;
    border-radius: 18px;
    margin: 20px 10px;
    color: #ffa500;
    display: flex;
    justify-content:space-around;
    align-items: center;
}

#task-list{
    width: 100%;
    max-height: calc(100% - 90px);
    padding: 10px;
    overflow-y: auto;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background-color: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
}

.task-item {
    background-color: #242424;
    width: 100%;
    min-height: 100px;
    transition: 0.7s;
    transform: scale(0);
    border-radius: 15px;
    padding: 8px;
    color: #f0f0f0;
    display: grid;
    grid-template-columns: 90px 1fr;
    margin-bottom: 20px;
}
.task-content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.task-play-container{
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-color: #ffa500;
}
.task-play-container img{
    margin: 0 !important;
}
.task-description,
.task-ubication{
    color: #666666;
}