* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    align-items: flex-start;
    background: rgb(34,195,182);
    background: linear-gradient(63deg, rgba(34,195,182,1) 0%, rgba(129,4,252,1) 100%);
    display: flex;
    justify-content: center;
    height: 100vh;
    font-family: Helvetica, sans-serif;
    padding: 32px;
    width: 100vw;
}

.container {
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.8)
    );
    border-radius: 15px;
    display: inline-block;
    padding: 16px;
}

input{
    display: block;
    margin: 20px 0;
    padding: 12px 16px;
    width: 100%;
}

button {
    background: transparent;
    border: rgba(255, 255, 255, 0.8) solid 3px;    
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin: 25px 0;
    padding: 12px 16px;
    transition: border-color 0.3s, background 0.3s;
    width: 100%;
}

button:hover {
    
    background-color: rgba(0,0,0,.1);
}

.tasks {
    margin-left: 16px;
}

.tasks input {
   position: relative;
   bottom: 30px;
   left: 100px;
}

.school {
    color:rgb(62, 5, 116);
    list-style: circle;
}

.work {
    color: rgb(128, 93, 7);
    list-style: square;
}

.hobby {
    color: rgb(63, 105, 1);
    list-style: square;
}

.categories {   
    display: flex;
    list-style-type: none;
    align-items: center;
}

.categories ul {
    justify-content: center;
}

.categories li {
    display: flex;
    align-items: center;
    justify-content: center;    
    margin-right: 16px;
}

.categories label {
    padding: 8px;
}