body {
    font-family: "Raleway", sans-serif;
    color: #8d9fcc;
    background-color: #371437;
}

a {
    color: #af95ce;
}

a:hover,
a:focus {
    color: #ebb7d9;
}


/*--- Welcome Section ---*/

#welcome {
    width: 100%;
    height: 65vh;
    background-image: linear-gradient(rgba(69, 69, 69, 0.1), rgba(53, 53, 53, 0.5)), url('welcome.png');
    background-size: cover;
    background-position: bottom;
    color: #ebb7d9;
    text-align: center;
    padding: 100px 0;
}

.welcome-hello {
    color: #af95ce;
    font-family: "Merriweather", sans-serif;
}

.btn-get-started {
    background-color: transparent;
    border: none;
    font-size: 64px;
    transition: 0.5s;
    color: #b295ce;
    height: 60px;
}

.btn-get-started:hover,
.btn-get-started:active,
.btn-get-started:focus {
    background-color: transparent;
    border: none;
    padding-top: 30px;
    color: #d17cda;
}




/*--- Header ---*/

.header {
    transition: all 0.5s;
    background: #371437;
    border-style: solid none none;
    border-color: #b6205180;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
    width: 100%;
}

.sticky {
    position: fixed;
    top: 0;
    border-style: none none solid none;
    border-color: #b6205180;
    margin-bottom: 3rem;
}

.scrolled-offset {
    margin-top: 60px;
}



/*--- Navbar ---*/
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar a,
.navbar a:focus {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #ebb7d9;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
}

.navbar a:hover,
.navbar .nav-item .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #af95ce;
}



/*--- Section ---*/

section {
    padding: 60px 0;
    background: linear-gradient(-140deg, rgb(25, 46, 87), rgb(55, 20, 65));
}

section:nth-of-type(2n) {
    background: linear-gradient(140deg, rgb(25, 46, 87), rgb(55, 20, 65));
}

.container-pad {
    padding: 0 8rem;
}

.section-title {
    padding-bottom: 20px;
    font-family: 'Merriweather';
}




/*--- About ---*/
#about h3 {
    font-family: 'Merriweather', sans-serif;
    font-size: 30px;
}

#about img {
    border-radius: 50%;
    object-fit: cover;
    width: 300px;
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}




/*--- Resume ---*/

.resume-title {
    color: #ebb7d9;
    font-family: "Merriweather";
}

.resume-item h4 {
    color: #af95ce;
    font-family: "Cambria";
    font-size: 24px;
}

.resume-item h5 {
    color: #8c6a90;
    background: #3e2c58;
    font-size: 18px;
    padding: 5px 5px 5px 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume-item {
    padding: 0 0 0 10px;
    border-left: 2px dashed rgb(121, 76, 125);
}



/*--- Skill Set ---*/
.progress {
    height: 20px;
    background-color: #8d9fcc;
    border: 1px solid rgb(102, 94, 131);
    box-shadow: 5px 5px 5px rgba(43, 40, 51, 0.849);
    border-radius: 12px;
}


.progress-bar {
    background: linear-gradient(to right, rgb(52, 90, 167), rgb(134, 36, 108));
}



/*--- Portfolio ---*/

.screenshot {
    max-height: 800px;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-item .btn.active,
.btn-primary {
    background-color: #821563;
    margin: 5px;
    color: white;
    border: solid 1px rgb(72, 14, 46);
    transition: 0.5s;
    color: #ebb7d9;
}

.nav-tabs .nav-item .btn:not(.active) {
    background-color: #7e5873;
    margin: 5px;
    color: white;
    border: 1px solid rgb(143, 105, 147);
    color: #ebb7d9;
    transition: 0.5s;
}

.nav-tabs .nav-item .btn:hover,
.btn-primary:hover {
    background-color: #a37b98;
    margin: 5px;
    color: #ebb7d9;
    border: 1px solid rgb(175, 129, 180);
}

.navbar-toggler.btn-primary:focus {
    background-color: #7e5873;
    color: white;
    border: 1px solid rgb(143, 105, 147);
    color: #ebb7d9;
    transition: 0.5s;
}




/*--- Contact ---*/

.contact-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -20px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    /* Adjust margin as needed */
}


#contacts .social-links a {
    font-size: 30px;
    display: inline-block;
    background: linear-gradient(to bottom, #a84a87, #4c3792);
    color: #d3bcee;
    line-height: 0;
    padding: 8px 0;
    margin-right: 15px;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    border: 1px solid #aa6583;
}

#contacts .social-links a:hover {
    background: linear-gradient(to bottom, #ebb7d9, #7e56b0);
    color: #e8d7fc;
}




/*--- Footer ---*/

.references {
    font-size: 12px;
    font-style: italic;
}

.references a {
    color: #af95ce;
}

.references a:hover,
.references a:focus {
    color: #ebb7d9;
}

.footer {
    background-color: rgb(32, 17, 47);
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}




/*--- Back to top button ---*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 9999;
    background: rgb(152, 86, 159);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(209, 124, 218);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}




/*--- Media Queries ---*/

@media (max-width: 1200px) {
    .container-pad {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .container-pad {
        padding: 0 2rem;
    }
}

@media (max-width: 576px) {
    .container-pad {
        padding: 0 1rem;
    }
}