:root{
  padding:0;
  margin: 0;
background-color: black;
color: white;
text-decoration: none;

}
body{
display: flex;
justify-content: center;
}

/* <weight>: Use a value from 200 to 900
     <uniquifier>: Use a unique and descriptive class name */

.source-code-pro-heading {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}
.source-code-pro-heading2 {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.source-code-pro-heading3 {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.source-code-pro-body {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container{
    width: 810px;
    height: 100vh;
}
.banner{
    position: relative;
}
#banner{
    width:100%;
display: block;
border-bottom: 1px solid white;
margin-bottom: 5rem;
}
#profile{
    position:absolute;
    left: 50%;
    bottom: 0;
    transform:translate(-50%,50%);

    border: 2px solid white;
    border-radius: 100%;
    height: 8rem;
}
#name{
    display: block;
    text-align: center;
  
   margin-bottom: 0;
    /* transform: translateX(-50%); */
    font-size: 2rem;
}
#bio{
   
  margin: auto;
 text-align: justify;
    
}

.socials{
  margin: 4px 4px 8px 4px;
    display: flex;
   
    justify-content: center;
    gap: 1rem;
}
button{
 width: 1.5rem;
  background-color: transparent;
  color: white;
   border: none;
  
}
.hidden{
    display: none;
}
.show{
    display: block;
}
.socials svg{
    align-self: baseline;
    fill: white;
}
a {
    text-decoration: none;
    color: white;
}

.projects:active{
    display: block;
}
.projects img{
    width: 100%;
}
.project-card{
    
    margin: 1rem 0;
    border-top: 2px solid white;
    
}


/* navbar */
.nav{
    display: block;
    margin: auto;
}
ul{ padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    text-decoration: none;
    
}
ul a:hover {
    color: green;
    
}



.active {
    text-decoration: underline;
}
.cover-image{
    width: 100%;
    margin: 1rem 0;
}

.footer{
    display: sticky;
    padding: 2rem;
  margin: 2rem;
    text-decoration: underline;
    font-size: small;
}