* {
    box-sizing: border-box;
    margin: 0;
  }
a{
    text-decoration: none;
    color: rgb(210, 210, 210);
    transition: color 0.5s;
  }
a:hover{
  color: rgb(77, 146, 109);
}
/*-------NAV Menu-------*/
nav {
    top: 0;
    padding: 0 0.5rem;
    width: 100%;
    height: 60px;
    color: rgb(210, 210, 210);
    z-index: 999;
    font-family: 'Bebas Neue', sans-serif;
}
#bar {
    position: fixed;
    background-color: rgba(10,10,10,.75);
    padding: 0.67rem 3rem;
    font-size: 2rem;
    display: grid;
    grid-template-columns: 6fr repeat(3, min-content);
    gap: 1.44rem;
    letter-spacing: 0.125rem;
}


/*-------Header Things-------*/
header {
    background-color: rgb(255, 255, 255);
    background-image: url(../img/0002.png);
    background-size: cover;
    background-position: center;
    height: 400px;
    font-size: 0px;
}
h1{
    font-size: 40px;
    text-decoration-line: underline;
}
header img {
    width: 50%;
    height: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    position: relative;
  }
/*-------Main-------*/
main {
    background-color: rgb(32, 32, 32);
}
section.bio{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(32, 32, 32);
    color: rgb(198,216,182);
}

/*-------Footer-------*/
footer {
    background-color: rgb(0, 0, 0);
    color: rgb(238, 228, 165);
    text-align: center;
    height: 30px;
}

/*------------gallery--------------*/
.projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5vw;
    grid-row-gap: 5vh;
    padding: 20px;
    max-width: 1280px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    
}

figure.boxes img {
    width: 100%;
    max-height: 50%;
    transform-origin: top center;
    transition: all 0.5s ease-in;
}

figure figcaption {
    color:rgb(210, 210, 210);
    background-color: rgba(10,10,10,.75);
    margin: 0;
}

.boxes img:hover {
    transform: scale(1.015);
}