.content {
    width: 100%;
    margin: 20px 0;
    background-color: #aaa;
    box-sizing: border-box;
    padding: 20px;
}

.content .title {
    color: blue;
    font-size: 30px;
    font-weight: 600;
}

.content p {
    margin: 20px;
    color: white;
    box-sizing: border-box;
    font-size: 20px;
    border: 1px solid #fff;
    padding: 20px;
    cursor: pointer;
    border-radius: 8px;
}

.content p:hover {
    border-color: red;
    transition: all 0.5s;
}

.imgshow {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.imgshow img {
    width: 40%;
    margin-top: 20px;
    border-radius: 20px;
    height: 400px;
}

.imgshow img:hover {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .5);
    transition: all 0.5s;
}