body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2980b9;
    text-transform: uppercase;
    font-family: sans-serif;
}
.container{
    width: 500px;
    box-shadow: 1px 2px 10px 5px;
    position: relative;
    overflow: hidden;
}
.container img{
    height: 100%;
    width: 100%;
}
.content{
    background: rgba(191, 227, 231, 0.8);
    position: absolute;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
    align-items: center;
    padding: 150px 20px;
    box-sizing: border-box;
    transition: all 0.5s;
}
.container:hover .content{
    top: 0;
}
ul{
    display: flex;
    list-style: none;
}
li{
    height: 50%;
    margin-right: 30px;
    cursor: pointer;
}