* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(207, 230, 243);
    width: 100%;
    margin: 0px;
    padding: 0px;

}

header {
    background-color: rgb(102, 161, 161);
    width: 100%;
    border-radius: 5px;
    align-content: center;
}

header h1 {
    text-align: center;
    font-size: 1.5em;
}

header div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

header fieldset {
    display: grid;
    grid-template-rows: 60% 40%;
    font-size: 1em;
    margin: 5px;
    padding: 10px;
    border: solid 1px rgb(116, 181, 241);
    border-radius: 5px;
    align-items: stretch;
    justify-content: space-around;
    width: 95%;
}

header fieldset textarea {
    width: 329px;
    height: 98px;
    margin: 10px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    justify-content: center;
}

select {
    width: 90%;
    margin: 10px;
    padding: 5px;
    border: none;
    border-radius: 5px;
}

div input[type='submit'] {
    background-color: rgb(142, 205, 247);
    border: none;
    border-radius: 4px;
    font-size: 1em;
    color: rgb(18, 135, 245);
    padding: 8px;
    width: 40%;
    max-width: 200px;
    margin: 10px auto;
    display: block;
    cursor: pointer;
}

main fieldset {
    display: grid;
    grid-template-columns: 80% 20%;
    align-items: center;
    font-size: 1em;
    margin: 5px auto;
    padding: 10px;
    border: solid 1px rgb(116, 181, 241);
    border-radius: 5px;
    width: 95%;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

main ul li {
    border-top: 1px solid cornflowerblue;
    padding: 8px;
    display: grid;
    grid-template-columns: 90% 10%;
}

.prio_1 {
    border-radius: 8px;
    background: #ffbabc;
    background: linear-gradient(180deg, rgba(255, 186, 188, 1) 0%, rgba(247, 220, 220, 0.1) 100%);
}

.prio_2 {
    border-radius: 8px;
    background: #fcffba;
    background: linear-gradient(180deg, rgba(252, 255, 186, 1) 0%, rgba(252, 255, 186, 0.1) 100%);
}

.prio_3 {
    border-radius: 8px;
    background: #8ec986;
    background: linear-gradient(180deg, rgb(153, 219, 144) 0%, rgba(208, 237, 204, 0.1) 100%);
}