#image_form {
    justify-content: center;
}

.add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    background-color: rgb(141, 180, 230);
    border-radius: 10px;
    border: 3px black solid;
    width: 520px;
    height: 615px;
}

.add_image {
    width: 500px;
    height: 500px;
    border: 3px black solid;
    background-color: rgb(110, 155, 205);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.add_submit_button {
    background-color: white;
    color: rgb(45, 103, 153);
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    border: 3px rgb(45, 103, 153) solid;
    padding: 10px 0 10px 0;
    margin: 10px;
    width: 90%;
}

.add_submit_button:hover {
    background-color: rgb(45, 103, 153);
    color: white;
}

#image_file {
    background-color: white;
    padding-top: 10px;
}