* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: lightblue;
  margin:40px
  padding: 20px;
  font-size: 25px;
  line-height: 1.5;
}

#header {
  background-color: goldenrod;
  max-height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 10px;
}
#nav {
  display: flex;
  justify-content: space-between;
  background-color: aquamarine;
  padding: 5px;
}
#logo {
  height: 150px;
  width: 200px;
  border-radius: 50px;
}
#car {
  max-width: 600px;
  
}
a {
  font-size: 30px;
  color: black;
  text-decoration: none;
  padding: 20px;
}
#h1home,
#h2about,
#h2service,
#h2lesson,
#h2choose,
#h2contact {
  justify-self: center;
}

#about {
  background-color: rgb(138, 193, 249);
  padding-bottom: 10px;
  border-radius: 10px;
}

#lessons,
#contact {
  background-color: rgb(138, 193, 249);
  padding-bottom: 10px;
  border-radius: 10px;
}

#footer {
  /* padding-top: 10px; */
  display: flex;
  justify-content: space-around;
}
#copy {
  padding-top: 20px;
}

#fb {
  display: flex;
}
