.upload-form {
    background-color: rgb(247, 247, 208);

    padding: 10px;

    width: fit-content;

    border-radius: 10px;

    outline: solid rgb(227, 218, 149) 5px;

    margin-bottom: 5vh;

    transition: all .3s;
}

.upload-form:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.343);

    transform: scale(1.1);

    background-color: rgb(251, 251, 231);
}