*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(2, 29, 29);
    color: white;
}

.navbar{
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: rgb(1, 1, 10);
}
.navbar-brand{
    font-size: xx-large;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    padding-left: 60px;
    color: white;
    text-shadow: 5px 5px 6px red, 3px 3px 4px #00e5ff, 3px 3px 5px #0000ff;
}
.name{
    text-shadow: 5px 5px 6px red, 3px 3px 4px #00e5ff, 3px 3px 5px #0000ff;
}
.nav-link{
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    width: 100px;
    text-align: center;
    color: white;
}
.btn-nav{
    background-color: aqua;
    margin-right: 30px;
}
.navbar-brand:hover{
    color: aqua;
}
.nav-link:hover{
    color: aqua;
}
.btn-nav:hover{
    color: aqua;
}

.myimg{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  
}
.img-fluid{
    width: 400px;
    height: 400px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 9px 4px 22px 13px rgba(0,255,255,0.65);
    -webkit-box-shadow: 9px 4px 22px 13px rgba(0,255,255,0.65);
    -moz-box-shadow: 9px 4px 22px 13px rgba(0,255,255,0.65);
}    
.imgtop, .imgbtm{
    position: absolute;
    width: 100px;
    height: 100px;
}
.imgtop{
    top: 0px;
    right: 20px;
    border-top: 9px solid tomato;
    border-right: 9px solid tomato; 
}
.imgbtm{
    bottom: 0px;
    left: 20px;
    border-bottom: 9px solid tomato;
    border-left: 9px solid tomato; 
}
.btn-home{
    width: 250px;
    height: 35px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aqua;
    transition: .5s ease;
     box-shadow: 1px 3px 15px 4px rgb(31, 234, 234);
    -webkit-box-shadow: 1px 3px 15px 4px rgb(31, 234, 234);
    -moz-box-shadow: 1px 3px 15px 4px rgb(31, 234, 234);
}
.btn-home a{
    color: rgb(1, 1, 68);
    font-size: large;
    font-weight: 500;
}
.btn-home a:hover{
    color: rgb(1, 1, 68);
}
.btn-home:hover{
    color: rgb(1, 1, 68);
    background-color: aqua;
    box-shadow: 6px 12px 20px 2px rgb(31, 234, 234);
    -webkit-box-shadow: 6px 12px 20px 2px rgb(31, 234, 234);
    -moz-box-shadow: 6px 12px 20px 2px rgb(31, 234, 234);
    transform: scale(1.1);
}
/* .navbar-brand{
    opacity: 0;
    animation: slideright 1s ease .1s forwards;
} */
/* .nav-link{
    opacity: 0;
    animation: slideleft 1s ease .2s forwards;
} */
.main-link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
    padding-left: 15px;
}
.l1{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aqua;
    transition: .4s ease;
     box-shadow: 1px 3px 15px 4px rgb(31, 234, 234);
    -webkit-box-shadow: 1px 3px 15px 4px rgb(31, 234, 234);
    -moz-box-shadow: 1px 3px 15px 4px rgb(31, 234, 234);
}
.l1 i{
    color: darkblue;
    
}
.l1:hover{
    box-shadow: 9px 4px 22px 13px rgba(0,255,255,0.65);
    -webkit-box-shadow: 9px 4px 22px 13px rgba(0,255,255,0.65);
    -moz-box-shadow: 9px 4px 22px 13px rgba(0,255,255,0.65);
    transform: scale(1.1);
}

.words3{
    opacity: 0;
    animation: slideright-per1 1s ease .1s forwards;
}
@keyframes slideright-per1{
    0%{
        width: 0%;
        opacity: 0;
    }
    100%{
        width: 90%;
        opacity: 1;
    }
}
.words4{
    opacity: 0;
    animation: slideright-per2 1s ease .2s forwards;
}
@keyframes slideright-per2{
    0%{
        width: 0%;
        opacity: 0;
    }
    100%{
        width: 85%;
        opacity: 1;
    }
}
.words5{
    opacity: 0;
    animation: slideright-per3 1s ease .3s forwards;
}
@keyframes slideright-per3{
    0%{
        width: 0%;
        opacity: 0;
    }
    100%{
        width: 75%;
        opacity: 1;
    }
}
.words6{
    opacity: 0;
    animation: slideright-per4 1s ease .3s forwards;
}
@keyframes slideright-per4{
    0%{
        width: 0%;
        opacity: 0;
    }
    100%{
        width: 95%;
        opacity: 1;
    }
}

.words1{
    opacity: 0;
    animation: slideleft 1s ease .2s forwards;
}
@keyframes slideleft{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

.words2{
    opacity: 0;
    animation: slideright 1s ease .1s forwards;
}
@keyframes slideright{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

.skills h5{
    padding-bottom: 30px;
}


.about h1{
    font-size: 2rem;
    font-weight: 700;
}
.para{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.para h6{
    color: rgb(250, 32, 159);
    text-transform: uppercase;
    font-size: small;
    font-weight: bold;
    letter-spacing: .05cm;
}
.skills span{
    border-bottom: 4px solid aqua;
    margin-top: 3px;
}
.probar{
    width: 100px;
    height: 100px;
    border: 3px solid aqua;
    border-radius: 50%;
}
.skills li::marker 
{
    font-size: 2.5rem;
    font-weight: bolder;
}

.linkslast{
    width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0px;
}
.extraq{
    max-width:350px;
    min-height: 80px;
    margin-bottom: 2px;
    background-color: rgb(40, 2, 24);
    border-top-right-radius: 50%;
    border-bottom-left-radius: 10px;
}
.img-project{
    width: 100%;
    height: 300px;
    
}
.card1 a {
    text-decoration: none; 
    color: white;  
}
.card1 h6{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: darkgreen;
    height: 40px;
}
.card1{
    padding: 15px;
}

