
    @font-face {
    font-family: 'Nintendo-DS-BIOS';
    src: url('Nintendo-DS-BIOS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Delicious';
    src: url('Delicious.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
    h1, h2, h3, h4, h5, h6 {
            font-family:'Delicious';
            

        }
  .neighbors {
    font-family:'Nintendo-DS-BIOS';
    padding:0px;
  }

  .trainstation {
    font-family:'Nintendo-DS-BIOS';
  }

    .neighbor-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 20px;

  padding:20px;
}
    
    .neighbor-container > div {
  padding-top:34px;
  background-size:contain;
  background-position: center;
  background-repeat:no-repeat;
  text-align: center;
  z-index:2;
  
  height:36px;
  width:98px;
  align-items:center;
  justify-content:center;
  
 
  
    }

    
    
    .station-container {
      
      display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  column-gap:0px;
 grid-column-gap:0px;
  padding:-20px;
      font-family:'Delicious';
    }
    
    .station-container > div {
    
    padding-top:26px;
  background-size:fill;
  background-position: center;
  background-repeat:no-repeat;
  text-align: center;
  z-index:2;
  
  height:45px;
  width:98px;
 
  
    
    }

    @media (min-width: 1400px) {
   .neighbor-container { 
    grid-template-columns: repeat(5, 1fr);
  
  }
  
  .station-container { 
    grid-template-columns: repeat(5, 1fr);
  
  }
}

@media only screen and (max-width: 600px) {
  
  
  .neighbor-container { 
    grid-template-columns: repeat(2, 1fr);
    text-align:center;
    align-items:center;
    justify-content:center;
  
  }
  
  .station-container { 
    grid-template-columns: repeat(2, 1fr);
    text-align:center;
    align-items:center;
    justify-content:center;
  
  }
}