body {
    background-image: url("./images/5630939.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    height:100vh;
    width:100vw;
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;

}
header{
    position:absolute;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    top:20%;
}
header h1{
    margin-top:10px;
    background:linear-gradient(to right, #cf88ff, #6dadd1);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size:3rem;
}
header .heading1{
    font-size:4rem;
    margin-bottom:0;
    font-family: cursive;
    background:linear-gradient(55deg,rgb(185, 223, 245),rgb(255, 77, 77));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
header .heading2{
    margin-left:10%;
}
header p{
    background:linear-gradient(45deg,rgb(255, 193, 193),rgb(255, 197, 109));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size:1.5rem;
    margin-left:28%;
    margin-top:-5%;
}
nav p{
    background:linear-gradient(40deg,rgb(255, 145, 145),rgb(213, 213, 255));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size:1.8rem;
    margin-top:40px;
    margin-left:10px;
    font-family: "Great Vibes", cursive;
  font-weight: 600;
  font-style: normal;
  transform:rotate(-25deg);
}
nav {
    display: flex;
    position: fixed;
    width: 100%;
    align-items: center;
    height:30px;
    font-family:arial;
    margin-top:20px;
}
nav ul{
    display:flex;
    flex-direction:row;
    justify-content:space-around;
    width:100%;
    list-style:none;
    margin:0;
    padding:0;
}
nav a{
    text-decoration:none;
    color:rgb(218, 255, 252);
}
nav a::after{
    content:"";
    display:block;;
    width:100%;
    height:1.5px;
    transform:scaleX(0.1);
    transition:transform 0.3s ease-out;
}
nav a:hover::after{
    transform:scaleX(1.2);
    background-color:rgb(133, 182, 255);
}
.my-image{
    width:40px;
    height:40px;
    border-radius:50%;
    margin-right:20px;
    border:2px solid lightgreen;
}
.info-icon , .projects-icon{
    width:15px;
    height:15px;
    margin-right:3px;
    vertical-align:middle;
}
.container{
    display:flex;
    height:400px;
    width:80%;
    margin-top:4rem;
    background-color:rgba(255,255,255,0.1);
    position:absolute;
    top:45%;
    margin-left:-40%;
}
.about{
    width:250px;
    height:300px;
    background-color:white;
    position:relative;
    margin-left:-30px;
    margin-top:-30px;
    border-radius:10px;
    border:2px solid;
    border-image:linear-gradient(45deg,rgb(255, 145, 145),rgb(213, 213, 255));
    border-image-slice:1;
    box-shadow:5px 10px 10px rgba(255,255,255,0.1);
    overflow:hidden;
    animation: neonGlow 2s linear infinite alternate;
}
@keyframes neonGlow {
    from {
        box-shadow: 0 0 3px rgba(255, 145, 145, 0.3), 0 0 10px rgba(255, 145, 145, 0.3), 0 0 15px rgba(255, 145, 145, 0.3);
    }
    to {
        box-shadow: 0 0 10px rgba(255, 145, 145, 0.8), 0 0 30px rgba(255, 145, 145, 0.8), 0 0 30px rgba(255, 145, 145, 0.8);
    }
}
.about img{
    width:100%;
    height: 100%;
    object-fit:cover;
    border-radius:10px;
    /* filter:blur(2px); */
}
.about .dev-name{
    position:absolute;
    z-index:1;
    margin-top:-58%;
    color:white;
    text-align:center;
    margin-left:15%;
    font-size:1.5rem;
    background-color:rgba(0,0,0,0.4);
    padding:4px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.about #caption{
    position:absolute;
    z-index:1;
    margin-top:-40%;
    text-align:center;
    color:rgb(222, 255, 212);
    letter-spacing:1px;
    padding:4px;
    background-color:rgba(0,0,0,0.4)
}
.circle1{
    height:300px;
    width:200px;
    position:absolute;
    z-index:-1;
    background-color:transparent;
    border: 10px solid;
    border-image:linear-gradient(45deg,rgb(255, 145, 145),rgb(213, 213, 255));
    border-image-slice:1;
    border-radius:50%;
    margin-left:-80px;
    margin-top:-80px;
}
.circle2{
    height:250px;
    width:160px;
    border-radius:50%;
    position:absolute;
    background-color:transparent;
    border:8px solid;
    border-image:linear-gradient(45deg,rgb(255, 145, 145),rgb(213, 213, 255));
    border-image-slice:1;
    z-index:0;
    margin-left:-55px;
    margin-top:-55px;
}
.about-content-container{
    display:flex;
    flex-direction:column;
    position:absolute;
    height:300px;
    width:600px;
    background-color:rgba(0,0,0,0.2);
    border:2px solid;
    border-image:linear-gradient(15deg,rgb(124,251,230),rgb(245,122,255));
    border-image-slice:1;
    margin-left:20%;
    margin-top:-5%;
    transition:1s ease-out;
    transform:scaleY(1);
}
.about-content-container:hover{
    transform:scale(1.1);
}
.about-content-container h2{
    font-size:2.5rem;
    color:aqua;
    text-align:center;
    margin-bottom:10px;
    margin-top:10px;
}
.about-content-container li b{
    color:rgb(240, 232, 232);
}
.about-content-container li{
    font-size:1.2rem;
    color:rgb(187, 182, 182);
    list-style:none;
    margin:5px 0;
}
.article-container{
    position:absolute;
    height:600px;
    width:550px;
    display:flex;
    background-color:rgba(0,0,0,0.2);
    border:2px solid;
    border-image:linear-gradient(125deg,rgb(124, 251, 255),rgb(240, 122, 255));
    border-image-slice:1;
    border-image-repeat:round;
    margin-top:-10%;
    margin-left:70%;
    overflow:hidden;
    animation:neonGlows 4s linear infinite alternate, bounce 8s linear infinite;
} 
@keyframes neonGlows{
    0%{
        box-shadow: 0 0 3px rgba(124, 251, 255, 0.3), 0 0 10px rgba(124, 251, 255, 0.3), 0 0 15px rgba(124, 251, 255, 0.3);
    }
    100%{
        box-shadow: 0 0 10px rgba(124, 251, 255, 0.8), 0 0 30px rgba(124, 251, 255, 0.8), 0 0 30px rgba(124, 251, 255, 0.8);
    }
}
@keyframes bounce{
        0% {transform: translateX(20px);}
    50% {transform: translateY(-20px);}
    100% {transform: translateX(20px);} 
    }
.article-background{
    position:absolute;
    height:60px;
    width:180px;
    background-color:transparent;;
    transform:rotate(-45deg);
    top:20%;
    left:-5%;
}
.article-background-text{
    color:rgba(255,255,255,0.1);
    font-size:6rem;
    text-align:center;
    font-family: "Great Vibes", cursive;
    font-weight: 600;
    font-style: normal;
    position:absolute;
    z-index:-1;
}
.article-note {
    display:flex;
    position:absolute;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
}
.article-note h2{
    background:linear-gradient(65deg,rgb(255, 145, 145),rgb(213, 213, 255));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size:3.5rem;
    margin-bottom:30px;
    margin-top:10px;
}
.article-note hr{
    width:100%;
    height:2px;
    background:linear-gradient(45deg,rgb(255, 145, 145),rgb(213, 213, 255));
    border:none;
    margin-top:-15px;;
}
.article-note p{
    font-size:1.8rem;
    width:500px;
    color:rgb(209, 255, 255);
}