.section_feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
    text-align: center;
    background-color: rgb(194, 106, 215, 0.3);
}
.feature_title {
    margin: 0;
    padding: 20px;
}

.video_download {
    display: flex;
    justify-content: center;
    height: 70px;
    width: 160px;   
    background-color: #c977be;
    border-radius: 15px;
    box-shadow: 0 0 8px 6px #ffffff;
}
.video_download a {
    padding: 20px;
    color: #ffffff;
    font-weight: bold;
}


.feature_links {
    display: flex;
    justify-content: space-around;
}
.feature_link {
    border-radius: 15px;
    transition: all 0.3s;
}

.feature_links img {
    width: 150px;
    height: 150px;
    box-shadow: 0 0 10px 5px #000;
}

.feature_link:hover {
    transform: scale(1.2);
}

.button_1 {
    display: inline-block;
    width: 200px;
    height: 70px;
    background-color: rgb(83, 28, 172);
     background: linear-gradient(90deg,#ff5c4d,#eb469f 30%,#8341ef 75%,#3f68f9);
    border-radius: 15px;
    padding-top: 25px;
    transition: all 0.3s;
}

.button_1:hover {
    box-shadow: 0 0 10px 5px #e6e2e2;
}

.button_2 {
    display: inline-block;
    height: 150px;
    width: 150px;
    background-color: #ffffff;
    color: rgb(119, 118, 118);
    padding-top: 55px;
    border-radius:8px;
    margin-top: 30px;
    box-shadow: 0 1px 1px 0 #b8b4b4;
    transition: all 0.3s;
}
.button_2:hover {
    box-shadow: 0 0 10px 10px #b9b5b5;
    transform: scale(1.1);
}

.button_2:hover ~ a {
    transform: translate(10px);
    z-index: 1;
}