.task{
    width: 100%;
    height: 100vh;
    background: white;
    padding:30px 10px 10px 10px;
    position: relative;
}
.task_con{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.task_con>a{
    display: block;
    width: 70%;
    margin: 10px auto;
    padding: 10px;
    background: #D1D1D1;
    color: black;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Manrope';

}
.task_con>a:hover{
    background: #B20000;
    color: white;
}
@media screen and (max-width: 768px){
    .task_con>a{
        width: 90%;
    }
}
