body,
span,
p,
a,
button,
input,
button:focus {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    text-decoration: none;
    background: inherit;
    font-family: inherit;
    color: inherit;
    border: inherit;
    margin: inherit;
    padding: inherit;
    height: inherit;
    outline: none;
}

body {
    background: var(--c1);
    color: var(--c4);
    font-family: sans-serif;
}

button:hover {
    cursor: pointer;
}

input, textarea, select {
    padding: 5px 20px;
    width: 500px;
    max-width: calc(100vw - 80px);
    background: #dfdddd;
    box-shadow: 0 0 2px black;
    color: black;
    margin: 0;
    border-radius: 2px;
    border: none;
    font-family: sans-serif;
    font-size: 1rem;
}
::placeholder {
    color: #4b4b4b;
    font-size: 1rem;
    font-family: sans-serif;
}
.inputTitle {
    font-weight: bold;
    margin-bottom: 5px;
}

#namesWr,
#sizeDateWr {
    display:grid;
    grid-template-columns: auto auto;
    row-gap: 20px;
    column-gap: 20px;
    width: 540px;
    max-width: calc(100vw - 80px);
    grid-template-columns: auto auto;
    justify-content: space-between;
}
#firstName, #lastName, #startDate, #size {
    width: unset;
    max-width: unset;
}
@media screen and (max-width: 625px) {
    #namesWr,
    #sizeDateWr {
        max-width: unset;
        width: unset;
        grid-template-columns: auto;
    }
    #firstName, #lastName, #startDate, #size {
        width: 500px;
        max-width: calc(100vw - 80px);
    }
}

.listWr {
    width: 600px;
    max-width: calc(100vw - 80px);
    margin: 0 40px;
    margin-top: 20px;
    padding: 0 0 0 20px;
}

.listWr li {
    margin-bottom: 10px;
}