body {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 93vh;
    width: 100vw;
    margin-top: 7vh;

}

.edit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em;
}

.edit form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.edit h1 {
    margin: 1em;
}

.form-box {
    height: 2em;
    width: 10vw;
}

.input-box  {
    font-size: 1.25em;
    padding-bottom: .5em;
}

.input-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: white;
    background-color: rgb(255, 65, 65);
    border: solid black 4px;
    border-radius: 16px;
    padding: 1em;

    width: 20vw;
}

#id_name {
    width: 16vw;
    margin-top: .5em;
    margin-bottom: 1em;
}

#id_description {
    margin-top: .5em;
    width: 16vw;
    height: 10vh;
    resize: none;
}

.edit form button {
    font-size: 1.5em;
    margin-top: 1em;
    width: 5em;
    height: 2em;
    background-color: black;
    color: white;
    border: solid black 4px;
    border-radius: 8px;
    cursor: pointer;
}
