body{
    margin: 0 auto;
}

.row{
    display: flex;
    flex-direction: row;
}

.column{
    display: flex;
    flex-direction: column;
}

#modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: RGBA(0,0,0,0.5);
    z-index: 2;
    justify-content: center;
    align-items: center;
    opacity: 0;
    display: none;
}

.containerModal {
    width: 300px;
    min-height: 300px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 0px 8px;
    transition: 0.5s;
}

h2{
    margin-bottom: 5px;
}

hr {
    width: 90%;
}

input{
    width: 90%;
    height: 30px;
    border-radius: 5px;
    font-size: 18px;
    margin: 8px;
}

textarea#descripcion {
    width: 90%;
    height: 150px;
    margin: 8px;
    border-radius: 5px;
    padding: 8px;
}

#color, #textColor{
    width: 50px;
}

button {
    margin: 15px;
    font-size: 18px;
    cursor: pointer;
}