html {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    font-size: medium;
    color: #ffffff;

}

body {
    margin: 0;
    padding: 0;
}


.navbar {
      background: #111111 ;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      height: 90px;
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      margin: 0 !important;
      padding: 0 !important;


}


.navmenu ul  {
    list-style: none;
    display: flex;
    justify-content: right;
    gap: 30px;
    padding: 0;
    margin-right: 1cm;
    font-size: large;
    
}

.navmenu li, a {
    color: #ffffff;
    text-decoration: none;
}

.active {
    color: rgb(244, 149, 7);

}

.navmenu li :hover {
    color: rgb(244, 149, 7);
}




.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 20px;
    margin: 90px;

}

@media (max-width: 600px) {
    .projects {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 20px;
    margin: 90px;

}
 
}

.projects > div {
  background: #0a0a0a;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: large;
}

.projects img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 6px;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 0;
    background-color: #001f3f ;

}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}