html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.toppage {
    background-color: rgb(73, 73, 73);
    border-radius: 20px;
    color: white;
}

.toppage .greatings {
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
    margin: 10px;
}  

.toppage .greatings img {
    max-height: 64px;
    border-radius: 50%;
    margin-right: 20px;
    top: 50%;
}

.tiles {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
}

.tile {
    background-color: rgb(73, 73, 73);
    border-radius: 20px;
    color: white;
    padding: 10px;
    width: auto;
}

.tile img {
    width: 100%;
}

.tile .event_item{
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 18px 0;
    padding:5px;
    &:hover {
      background-image: linear-gradient(-222deg, #FF8494, #ffa9b7);
      box-shadow: 0px 0px 52px -18px rgba(0, 0, 0, 0.75);
      .ei_Dot{
        background-color: #fff;
      }
      .ei_Copy,.ei_Title{
        color:#fff;
      }
    }
}

.tile .ei_Title{
    margin-left:10px;
    font-size: 18px;
    display: table-cell;
}
  
.tile .ei_Copy{
    font-size:18px;
    margin-left:27px;
    display: table-cell;
}

@media (min-width: 600px) {
.tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
.tiles { grid-template-columns: repeat(3, 1fr); }
}