body{
    /* border:1px solid red; */
    height:100vh;
    margin: 0;
    color: white;
    background-color: rgb(1, 1, 29);
    font-family: sans-serif;
}
header{
    text-align: center;
    /* border:2px solid gray; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
 

}

header img{
    width: 15rem;
    object-fit: cover;
    border-radius: 150px;
}
.bio{
    /* border: 1px solid green; */
}
#pro-pic{
    /* border: 2px solid red; */
    border-radius: 100px;
    box-shadow: 0px 0px 10px 2px white;
}
header span{
    color: blueviolet; 
}
hr{
    color: white;
    
}
footer{

  /*   border: 2px solid yellow;  */
    display: flex;
    justify-content: space-between;
    padding:  20px ;
}

.media{
  /*   border: 2px solid green; */
}
.address{
   /*  border:2px solid gray; */
}
main h2{
    text-align: center;
}

.created-on {
    color: brown;
    margin-top: 0%;
}
section h3{
    margin-bottom: 0%;
;
}
section img{
    width: 80%;
}

section button {
    display: block;
    width: 400px;
    background-color: orange;
    height: 30px;
    margin-top: 20px;
    border-radius: 10px;
}

.project1 {
    border: 1px solid orange;
    width: fit-content;
}
.project1{
    border: 1px solid rgb(64, 0, 110);
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px white;
  box-shadow: 0px 0px 10px 1px rgb(127,0,255);

}


section{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

h1 {
    text-shadow: 2px 2px 4px rgb(127,0,255);
}

/* Media Queries for Responsiveness */
@media (max-width: 600px) {
    .intro {
        flex-direction: column;
        width: 90%;
    }

    .projects {
        flex-direction: column;
        align-items: center;
    }

    .project1 {
        width: 90%;
    }

    footer {
        flex-direction: column;
        align-items: center;
        margin: 20px;
    }

    .contact, .media, .address {
        margin-bottom: 20px;
        text-align: center;
    }
}