 img{
        height: 100px;
    }
    .link_add{
        padding: 24px;
        color: aliceblue;
        background-color: blue;
        width: 300px;
    }
    .link_add:hover{
        color: aliceblue;
        background-color: orangered;
    }
    .my_link{
        display: flex;
        justify-content: center;
        text-decoration: none;
    }
td{
   
    column-gap: 12px;
    border: 1px solid blue;
    padding: 5px;
   
}
th{
    column-gap: 12px;
    border: 1px solid blue;
    padding: 10px;
}
table{
    margin-left: 50%;
    transform: translate(-50%);
}
td a{
    padding: 4px;
    color: wheat;
    
}
.delete_button{
    background-color: red;
}
.edit_button{
    background-color: blue;
}
.form_container{
    
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.form_container input{
    border: 1px solid blue;
    width: 100%;
}
.form_container textarea{
    width: 100%;
}
.form_container .s_button{
    background-color: green;
    color: white;
}
.form_container .third_input{
    color: white;
    background-color: green;
    border: 1px solid white;
}
