/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

header {
    background: #005a87;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

section {
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #005a87;
    margin-bottom: 0.5rem;
}

#story img {
    max-width: 100%;
}

#story p {
    margin-bottom: 1rem;
}

#story p::first-letter {
    color: #005a87;
    font-weight: bold;
    font-size: 1.5rem;
  }

/* Responsive Styles */
@media (min-width: 768px) {
    body {
        padding: 40px;
    }

    header h1 {
        font-size: 3rem;
    }

    section {
        margin: 1rem auto;
        max-width: 800px;
    }
}

@mixin tablet-and-up {
    @media screen and (min-width: 769px) { @content; }
}
@mixin mobile-and-up {
    @media screen and (min-width: 601px) { @content; }
}
@mixin tablet-and-down  {
    @media screen and (max-width: 768px) { @content; }
}
@mixin mobile-only {
    @media screen and (max-width: 600px) { @content; }
}


ul, li{
  list-style: none;
  padding: 0;
}

#timeline .container, #trends .container{
  display: flex;
  justify-content: center;
  align-items: center;
}
#timeline .sessions, #trends .sessions{
  margin-top: 1rem;
  border-radius: 12px;
  position: relative;
}
#timeline li, #trends li{
  padding-bottom: 1.5rem;
  border-left: 1px solid #005a87;
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
  &:last-child{
    border: 0px;
    padding-bottom: 0;
  }
  &:before{
    content: '';
    width: 15px;
    height: 15px;
    background: white;
    border: 1px solid #005a87;
    box-shadow: 3px 3px 0px #ddd;
    box-shadow: 3px 3px 0px #ddd;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0px;
  }
}
#trends li{
    border-left: none;
}
#timeline .time, #trends .time{
  font-weight: bold;
  @include mobile-and-up{
    font-size: .9rem;
  }
  @include mobile-only{
    margin-bottom: .3rem;
    font-size: 0.85rem;
  }

}
#timeline p, #trends p{
  color: #4f4f4f;
      font-family: sans-serif;
  line-height: 1.5;
  margin-top:0.4rem;
  @include mobile-only{
    font-size: .9rem;
  }
}
