/* Resume Section Styles */
#resumeBox {
    margin: 0;
}
#resumeImageBox {
    position: relative;
    width: 80%;
    margin: auto;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}
#resumeImageBox:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.32), 0 2px 10px 0 rgba(0, 0, 0, 0.24);
}
#resumeImage {
    width: 100%;
    height: 100%;
}
#resumeNumber {
    position: absolute;
    background-color: transparent;
    width: 14%;
    height: 1.4%;
    top: 7.8%;
    right: 9.4%;
}
#resumeEmail {
    position: absolute;
    background-color: transparent;
    width: 13%;
    height: 1.3%;
    top: 9.4%;
    right: 9.4%;
}
#resumeSite {
    position: absolute;
    background-color: transparent;
    width: 9.3%;
    height: 1.3%;
    top: 10.9%;
    right: 9.4%;
}
#resumeDownloadBox {
    margin: 2rem auto 4rem;
    text-align: center;
}
.downloadResume {
    text-decoration: none;
    height: 2.5rem;
    background-color: rgb(181, 133, 0);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    padding: 1rem 3rem 1rem 1.5rem;
    font: inherit;
    outline: inherit;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}
.downloadResume:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.32), 0 2px 10px 0 rgba(0, 0, 0, 0.24);
}
.downloadResume > img {
    position: relative;
    width: 1.8rem;
    margin-right: 1rem;
    margin-left: 0;
    transform: translateY(30%);
}
.downloadResume > p {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font: inherit;
}


/* Media Queries Styles */
@media screen and (max-width: 1200px) {
    #resumeImageBox {
        width: 86%;
    }
}
@media screen and (max-width: 900px) {
    #resumeImageBox {
        width: 100%;
    }
}