body {
    background-color: lightblue;
}



h1 {
  color: blue;
}

p {
  color: #9a75bf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Hide the menu to the side on mobile and not allow scrolling to the side */
html {
  overflow-x: hidden;
}

nav {
  width: 100%;
  padding: 20px;
}


.navMenu ul {
  display: flex;
  justify-content: space-between;
}

.navMenu li {
  list-style: none;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.navMenu li:hover {
  color: blue;
}

.button {background-color: #CBC3E3; border: dashed; color: white: padding: 20px 34px; text-align: center; curosr:pointer;
}
