.event-detail {
  margin-bottom: 100px;
  
  @media screen and (max-width: 767px) {
    text-align: center;
  }

  &__event-name {
    color: #53738a;
    text-align: center;
    font-family: Hand_Of_Sean_Demo, sans-serif;
    font-size: 30px;
    margin-bottom: 30px;
  }

  &__date {
    margin-bottom: 30px;

    @media screen and (max-width: 767px) {
      margin-top: 30px;
    }

    &--day {
      color: white;
      font-family: Hand_Of_Sean_Demo, sans-serif;
      font-size: 25px;
      background-color: #8CA6B9;
      padding: 17px 25px 12px 25px;
      display: inline-block;
    }

    &--month-n-year {
      font-family: Raleway, sans-serif;
      font-weight: bold;
      font-size: 20px;
      margin-left: 20px;
      display: inline-block;

      &__month {
        display: inline-block;
      }

      &__year {
        display: inline-block;
      }
    }
  }

  &__description {
    margin-bottom: 20px;
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: bold;
  }
}