/* Projects */
.projects {
    width: 70%;
    display: block;
    float: center;
    position: relative;
    margin: 15px auto 15px auto;
    padding: 15px;
    border-radius: 8px;
    border-color: ghostwhite;
    border-style: inset;
    transition: all 0.6s ease;
}

.projects:hover {
    border-color: dodgerblue;
    border-style: inset;
    background: radial-gradient(circle, crimson , dodgerblue );
    box-shadow: 5px 5px 15px 5px ghostwhite;
    margin-top: -35px;
    margin-bottom: 35px;
    transition: all 0.6s ease;
}

/* videos */

.video {
    width: 75%;
    padding: 15px 15px 15px 15px;
    margin: 15px auto 15px auto;
    display:block;
    position: relative;
    align-content: center;
    border: none; 
    border-radius: 30px;
}

.video:hover {
    border-color: dodgerblue;
    border-style: inset;
    background: radial-gradient(circle, crimson , dodgerblue );
    box-shadow: 5px 5px 15px 5px ghostwhite;
    padding: 0px;
    margin-top: -35px;
    margin-bottom: 35px;
    transition: all 0.6s ease;
}


/* image */
.projects_img img {
    max-width: 300px;
    max-height: 300px;
    display: block;
    margin: 15px auto 15px auto;
    border-radius: 75px;
}

@media screen and (max-width: 500px) {
    .projects_img img {
    max-width: 200px;
    max-height: 200px;
    display: block;
    margin: 15px auto 15px auto;
    border-radius: 75px;
    }
}

/* links */
.projects h3 a:hover {
    color: ghostwhite;
    text-decoration: none;
    transition: all 0.6s ease;
}

.projects h4 a:hover {
    color: ghostwhite;
    text-decoration: none;
    transition: all 0.6s ease;
}