*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
.container{
    display: grid;
    grid-template-columns: 50% 50%;
    gap:2rem;
    width: 100vw;
    padding:5rem;
}
div[class^="task-"]{
    display: flex;
    flex-direction: column;
    gap:2rem;
    width: 100%;
    margin:0 auto;
    padding:3rem;
    border: 1px solid black;
}
label{
    font-weight: bold;
    font-size: 30px;
    padding-bottom: 8px;
    border-bottom: 1px dotted black;
}
p{
    font-weight: bold;
    font-size: 25px;
    color:green;
    font-family: 'Courier New', Courier, monospace;
}
button{
    color:white;
    background-color: rgb(23, 75, 134);
    cursor: pointer;
    padding: 1rem;
    font-size: 20px;
}
input{
    border-color:rgb(23, 75, 134);
    height: 50px;
    font-size: 20px;
}
button:hover{
    background-color: green;
}
b{
    font-size: 18px;
}
span{
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}