.frame{
    display: flex;
    background-size: cover;
    width: 100%;
    height: 40rem;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.photo-box{
    position: inherit;
    margin-top: 5%;
    margin-left: 20%;
    margin-right: 0;
    width: 350px;
    height: 450px;
    background: white;
}

.photo-circle{
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-image: url("../images/3.5x4.5.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.phone_and_email{
    font-size: 14px;
    color: rgb(75,75,75)
}

.phone_and_email:visited{
    color: rgb(75,75,75)
}

.phone_and_email:hover{
    color: rgb(0, 0, 0)
}

.social_media_icons{
    color: rgb(75,75,75)
}

.social_media_icons:hover{
    color: black !important
}

.social_media_icons:visited{
    color: rgb(75,75,75) !important
}

.skill-box{
    position: inherit;
    margin-top: 10%;
    margin-bottom: auto;
    margin-left: 0;
    margin-right: auto;
    width: 350px;
    height: 300px;
    background-color: rgba(110, 110, 255, 0.3);
}

.skillset-list{
    list-style-type: none;
}

.skillset{
    font-size: 20px;
}

.skillset-rating{
    font-size: 20px;
}

.slideshow-container{
    max-width: 100%;
    position: relative;
    height: 100%;
    display: block;
    /* background-color: white; */
}

.skillset-slide{
    position: sticky;
    display: none;
}

.fade-ss{
    -webkit-animation-name: fade-ss;
    -webkit-animation-duration: 1.5s;
    animation-name: fade-ss;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade-ss{
    from {opacity: .4;}
    to {opacity: 1;}
}

@keyframes fade-ss{
    from {opacity: .4;}
    to {opacity: 1;}
}

.prev, .next {
    cursor: pointer;
    position:absolute;
    top: 35%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 32px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    }

.next{
    right: 0;
}