html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 1;
}

.navbar {
    background: linear-gradient(to right, #FFD700, #4A171E);
    padding: 3px 0;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, 0.575)
}

.navbar-img {
    width: 3rem;
    border: 1px solid black;
    border-radius: 50%;
    padding: 5px;
    background: #4A171E;
}
.nav-item {
    padding: 0 20px;
}
.nav-link {
    color: white!important;
    font-weight: 600;
    font-size: large;
    text-align: center;
    font-family: cursive;
}
.nav-link:hover {
    color: #4A171E!important;
}
.fa-bars {
    color: white!important;
    font-size: 1.5rem;
    font-weight: 600;
}
.navbar-toggler {
    outline: none!important;
}
#home {
    background: linear-gradient(to right, #FFD700, #4A171E);
    color: white;
}
.always {
    position: relative;
    font-size: 3rem;
    font-weight: 100;
    text-align: center;
    animation-name: alwaysLooking;
    animation-duration: 2s;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
@keyframes alwaysLooking {
    0% {
        top: -300px;
    }
    100% {
        top: 0;
    }
}
.vector {
    position: relative;
    transition: 1.5s;
    animation-name: Vector;
    animation-duration: 3s;
}
@keyframes Vector {
    0% {
        left: -400px;
    }
    100% {
        left: 0;
    }
}
.vector:hover {
    transform: rotateY(180deg);
}
.myname {
    position: relative;
    font-size: 2.3rem;
    font-style: italic;
    font-weight: 100;
    margin-top: 3rem;
    text-align: center;
    animation-name: MyName;
    animation-duration: 3s;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
@keyframes MyName {
    0% {
        left: -400px;
    }
    100% {
        left: 0;
    }
}
.full-stack {
    position: relative;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 100;
    text-align: center;
    animation-name: FullStack;
    animation-duration: 3s;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
@keyframes FullStack {
    0% {
        left: -400px;
    }
    100% {
        left: 0;
    }
}
.github-img {
    width: 40px;
    color: white;
    transition: .5s;
}
.github-img:hover {
    transform: translateY(-10px);
}
.facebook-img {
    width: 30px;
    transition: .5s;
}
.facebook-img:hover {
    transform: translateY(-10px);
}

.social-img {
    position: relative;
    animation-name: SocialImage;
    animation-duration: 3s;
}
@keyframes SocialImage {
    0% {
        left: -400px;
    }
    100% {
        left: 0;
    }
}
#about {
    padding-bottom: 90px;
}
.pattern {
    width: 400px;
}
.about-img {
    height: 400px;
}
.about-img img {
    position: absolute
}
.title {
    font-size: 2rem;
    text-shadow: 2px 2px;
}
.title::after {
    content: '';
    background: #7b1798;
    height: 5px;
    width: 140px;
    /* margin: auto; */
    display: block;
}
.description {
    font-family: cursive;
    font-size: 1.2rem;
}
#projects {
    /* box-shadow: 10px 10px 5px 5px #000000; */
    box-shadow: 0 0 5px 5px #ccc; 
    /* box-shadow: 0 0 10px 10px #ccc; */
    padding-bottom: 90px!important;
}
.projects {
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px;
    margin-top: 20px;
    margin-bottom: 100px;

}
.projects::after {
    content: '';
    background: #7b1798;
    height: 5px;
    width: 170px;
    margin: auto;
    display: block;
}
/* .e-commerce {
    height: 9rem;
}
.social-app {
    height: 9rem;
} */
a {
    text-decoration: none!important;
    color: black;
}
.e-tag {
    border-radius: 20px;
    cursor: pointer;
    transition: .5s;
}
.s-tag { 
    border-radius: 20px;
    cursor: pointer;
    transition: .5s;
}
.e-text {
    font-weight: 800;
}
.s-text {
    font-weight: 800;
}
.e-tag:hover {
    transform: scale(1.3);
    background: linear-gradient(to right, #FFD700, #4A171E);
    color: white;
}
.s-tag:hover {
    transform: scale(1.3);
    background: linear-gradient(to right, #FFD700, #4A171E);
    color: white;
}
.btn-primary {
    background: linear-gradient(to right, #FFD700, #4A171E);
}
.html-description {
    padding-left: 15px;
    padding-right: 15px;
}
.react {
    width: 4rem;
    align-items: center;
    text-align: center;
    margin: auto;
}
.react-skill {
    border-radius: 50%;
    width: 80%;
    box-shadow: 10px 10px 5px grey
}
.react-skill:hover {
    background: linear-gradient(to right, #FFD700, #4A171E);
    color: white;
}
.react-text {
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
.skill-text {
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px;
    margin-bottom: 100px;
    margin-top: 30px;
}
.skill-text::after {
    content: '';
    background: #7b1798;
    height: 5px;
    width: 110px;
    margin: auto;
    display: block;
}
.e-commerce-code {
    box-shadow: none!important;
}
.insta-code {
    box-shadow: none!important;
}

@media(max-width: 768px) {
    .vector {
        display: none;
    }
}
@media(max-width: 576px) {
    .e-col {
        margin-bottom: 2rem;
    }
    .s-col {
        margin-bottom: 2rem;
    }
    .react-skill {
        margin-bottom: 2rem;
        /* margin: auto; */

    }
}