:root {
    --gold: #d6c589;
    --black: #1f1f1f;
    --sunshine: #dfb133;
    --white: #ffffff;
    --drab: #717171;
    --light-drab: #a19d96;
    --dark-drab: #3f3c3a;
    --fog: #cfcfce;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    min-width: 180px;
    max-width: 360px;
    padding: 40px 32px 32px 32px;
    margin-left: 8px;
    margin-right: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: static;
    align-self: center;
    background-color: var(--dark-drab);
}
.header-logo {
    align-self: center;
}

#list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}