body {
  padding-top: 50px;

  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  font-size: 18px;
  &.site-body {
    display: flex;
    min-height:  calc(100vh - 50px);
    flex-direction: column;
  }
}

#mynav {
  background-color: #003e83;
  height: 60px;
  border: 0px;
  .navbar-brand {
    color: #fff;
    font-size: 20px;
    line-height: normal;
  }
}

.site-content {
  flex: 1;
  margin-top: 20px;
}

#intro {
  text-align: center;
  margin-bottom: 35px;

  @media only screen and (max-width: 767px) {
    p {
      text-align: left;
    }
  }
}

#music {
  #musicSearch {
    border: 1px solid lightgray;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 6px;
    width: 300px;

    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }

  ul {
    border: 1px solid lightgray;
    border-radius: 15px;
    list-style-type: none;
    padding-left: 20px;

    li {
      margin: 15px 0px;
    }
  }
}

