html {
  scroll-behavior: smooth ;
}

body {
  background: lightblue;
  margin: 0;
}

#menu ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  list-style: none;
  margin-block-start: 0;
  padding-inline-start: 0px;
  width: 30%;
  margin-right: 50px;
}

#menu {
  position: sticky;
  top: 0px;
  padding: 8px;
  background: orange;
  display: flex;
  justify-content: space-between;
  align-items: self-end;
}


#menu img {
  max-width: 2%;
  
}

section {
  background: green;
  min-height: 100vh;
}

#about {
  background: purple;
}

#works {
 background: blue;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 70px;
  gap: 40px 0px;
}

.grid-container img {
  max-width: 200px;
}