#controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px;
    margin-bottom: 16px;
    background-color: #f6f6fe;
    border-radius: 8px;
    width: 486px;
    height: 104px;
}

#boxes {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 32px 28px;
    gap: 44px;
    background: #f6f6fe;
}

input {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #2e2f42;
    border: 1px solid #808080;
    border-radius: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: inherit;
    text-align: center;
    width: 150px;
}

button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 8px 16px;
    background-color: #4e75ff;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    background-color: #6c8cff;
}

.destroy {
    background-color: #ff4e4e;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.destroy:hover {
    background-color: #ff7070;
}