* {
    background-color: rgb(42, 40, 40);
}

#name {
    font-size: 160px;
    color: blanchedalmond;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;    
}

#aboutnav {
    margin-left: 30px;
    font-size: 35px;
    display:inline-flex;    /* only as wide as content */
    align-items: center;
    justify-content: center;
    padding: 8px 25px;  /* space around nav items */
    background-color: #5C80BC; /* curved container color */
    border-radius: 30px;  /* round corners */
}


#contactnav {
    margin-left: 1180px;
    font-size: 35px;
    display:inline-flex;    /* only as wide as content */
    align-items: center;
    justify-content: center;
    padding: 8px 25px;  /* space around nav items */
    background-color: #5C80BC; /* curved container color */
    border-radius: 30px;  /* round corners */
    

}


#contactnav:hover{
    background-color: #960000; /* New color on hover */
    cursor: pointer; /* Changes cursor to a hand pointer */
    
}


#aboutnav:hover{
    background-color: #960000; /* New color on hover */
    /* cursor: pointer; /* Changes cursor to a hand pointer */

}

#arrowimage {
    height: 60px;
    width: 130px;
   margin-left: 650px;
   transform: rotate(45deg);
   color: #960000;

}



#image-box-1 {
margin-right: 30px ;
    
}


#image-box-2 {
    margin-right: 30px ;
        
    }


#image-box-3 {
    margin-right: 30px ;
        
    }


#image-box-4 {
    margin-right: 30px ;
        
    }


#image-box-5 {
    margin-right: 30px ;
        
    }


#image-box-6 {
    margin-right: 30px ;
        
    }


#contactheader {
    font-size: 100px;
    font-family: monospace;
    color:blanchedalmond;
}

.image-row {
    display: flex;
    gap: 330px; /* space between images */
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 200px;
    margin-bottom: 200px;
  }
  
  .image-row img {
    width: 500px; /* adjust size */
    height: 500px;
    border-radius: 8px;
  }

.projects-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; /*space between projects */
    padding: 100px;
}

.projects-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: blanchedalmond;
    font-family: monospace;
}

.project-card img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    background-color: white;
  }
