body{
    background-color: cadetblue;
    font-family:arial;
}

#searcharea{
    margin:0 auto;
    text-align:center;
    font-family:arial;    
}
#searcharea label {
    font-size:26px;
    font-weight:bold;    
}
#searcharea input {
    border-radius:10px;
    border:solid 3px black;
    padding:10px;
    color:cadetblue;
    width:300px;
    font-size:14px;
}
#update{
    width:70%;
    margin:0 auto;
    border-top:2px solid black;
}
#update ul {
    list-style:none;
    margin:0;
    padding:0;
}
#update ul li{
    border-bottom:2px solid black;
    padding-bottom:30px;
    height:140px;
    overflow:hidden;
    animation: fadeinout 1s;
    transition: height 0.3s ease-out;
}
#update li:hover{
    height:395px;
}
#update img {
    float:left;
    margin-right:15px;
    margin-bottom:5px;
    border-radius:10px;    
}
@keyframes fadeinout {
    0% {opacity:0;}
    100% {opacity:1;}
}