* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 200px 1fr;
}

aside {
  background: #00bfff;
  padding: 10px;
}
nav ul,
li {
  list-style: none;
  color: white;
}

aside .title {
  color: white;
  margin-bottom: 3rem;
}

aside .title P {
  color: rgb(236, 234, 234);
}

nav li {
  padding: 10px 20px;
  border-bottom: 1px solid #64d1f5;
}

li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #f4f4f4;
}

main {
  padding: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: 60px auto 60px;

  /* CSS Smooth Scroll */
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

header {
  background-color: rgb(24, 31, 65);
  line-height: 60px;
}

header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header li {
  padding: 0 20px;
}

header ul li:first-child {
  margin-right: auto;
  margin-left: 0;
}

article {
  padding: 20px 20px;
}

footer {
  background-color: #d4d4d4;
}
