img {
    height: 250px;
    width: 200px;
    border-style: solid;
    border-color: black;
    border-width: 4px;
    border-radius: 5px;
    transition: 1s;
}

img:hover {
    height: 350px;
    width: 300px;
}


body {
    background-color: #ddc7a4; 
    font-family: "Trirong", serif;
}

.index {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 50px;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 70px;
    text-shadow: 3px 3px 3px ;
}

.Vincent_van_Gogh {
    border-style: none;
    width: 1000px;
    height: 300px;
    transition: none;
}

.Vincent_van_Gogh:hover {
    width: 1000px;
    height: 300px;

}