html {
  scroll-behavior: smooth ;
}

body {
  background: lightblue;
  margin: 0;
  color:white;
}

#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: 20%;
  
  
}

#menu img:hover{
  transform: rotate(180deg);
transition: 1s ease;

}

section {
  background: green;
  min-height: 100vh;
  padding-top:20px;
  padding-left:10px;
}

#about {
  background: purple;
}

#works {
 background: blue;
}

.grid-container{
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  column-gap:10px;
  row-gap:20px;
  margin:10px;
}

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

a{
color:white;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

#about{
  background:lightblue;
  transition: all 2s;
}
#about:hover{
  background:purple;
}

