* {
    font-family: "Poppins" sans-serif;
  }

  body{
    background-image: url('/img/concerts_bg2.jpg');
    background-size: cover;
  }
  
 .concerts_container {
    height: 700px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .concerts-items-container{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .title {
    font-size: 2em;
    font-weight: 600;
    text-align: center;

    font-family: "Poppins" sans-serif;
    color: #08243A;
  }
  
  .photo-container {
    font-size: 1.5em;
    background-color: #08243A;
    color: white;
    padding: 20px;
    text-align: center;
    grid-area: photo;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-container {
    margin: 18px;
    display: grid;
    grid-template-areas: 'photo info';
    grid-template-columns: 150px 1fr;
    width: 500px;
    background-color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    line-height: 1.75em;

    transition: .8s;
  }

  .card-container:hover{
    transform: scale(1.1);
    cursor: pointer;
  }

  .info-container {
    padding: 35px;
    grid-area: info;
  }
  .event-name {
    font-weight: bold;
    padding-bottom: 5px;
  }
  .event-location {
    font-size: 1em;
    font-weight: 300;
  }
  .day {
    font-weight: 300;
  }
  .month {
    font-weight: 600;
  }
  
  @media( max-width: 600px ) {
    .card-container {
      width: 90%;
    }
  }

  .footer_container{
    position: absolute;
    bottom: 0;
  }