* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Tahoma, Geneva, sans-serif;
  line-height: 1.6;
}

body {
  padding: 20px;
  background-color: oklch(0.92 0.004 286.32);
}
h1 {
  color: #333;
  align-self: center;
}


/* links navigation styles
*/
ul {
    list-style-type: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

ul li {
    margin: 0.8rem 0;
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
}

ul li:hover {
    transform: translateY(-3px);
    background-color: #bbf451;
}