/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-size: 28px;
  height: 100vh;
}

.header {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  background-color: white;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0px 0px 30px 0px hsla(0, 0%, 0%, 0.2);
}

.logo_container {
  margin-left: 40px;
}

.logo_title {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.main {
  max-width: 968px;
  margin: 15rem auto;
}
.home {
  min-height: 100px;
  margin: 5rem auto;
  padding: 10px;
  box-shadow: 0px 0px 30px 0px hsla(0, 0%, 0%, 0.1);
  background-color: lavender;
}

.list_item {
  margin: 1.5rem 3rem;
}
