/* Resume */
.resume{
    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;
}

.resume: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;
}

.flex-column{
    display: flex;
    justify-content: space-between;
}

/* links */
.resume h3 a:hover {
    color: ghostwhite;
    text-decoration: none;
    transition: all 0.6s ease;
}

.resume h4 a:hover {
    color: ghostwhite;
    text-decoration: none;
    transition: all 0.6s ease;
}