html {
  font-family: Arial;  
  font-size: 8px;
}

p {
  margin: 0;
}

h1 {
  text-align: center; 
  font-size: 3rem;
  font-weight: 600;  
  margin-bottom: 0px;
}

.sub_h1 {
  text-align: center; 
  font-size: 1.5rem; 
  margin-top: 5px;
  margin-bottom: 0px;
}

.row-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  margin-top: 1.5rem;
}

.data-grid {
  display: grid;
  grid-template-columns: 60px 1fr 70px;
  column-gap: 20px;
}

.grid-image {
  grid-column-start: 1;
  grid-column-end: 2;
  object-fit: contain;
  width: 100%;
  align-self: start;
}

.grid-text {
  grid-column-start: 2;
  grid-column-end: 3;
}

.title {
  font-size: 2em;
  font-weight: 600;  
  margin-top: 5px;
  margin-bottom: 10px;
}

.card {
    
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0.5rem
}

.author {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
}

.expansions > p {
    font-size: 1.2em;
    font-weight: 600;
}

.expansions > ul {
    margin-top: 5px;
}

.expansions > ul > li {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.bgg_link {
     margin-top: 5px;
     align-self: start;
}

.bgg_icon {
     width: 60px;
}

.moving-out {
     background: #ff8080;
}

.moving-in {
     background: #80ff80;
}

@media only screen and (min-width: 768px) {
    .data-grid {
        display: grid;
        grid-template-columns: 100px 1fr 100px;
        column-gap: 20px;
    }
    
    html {
        font-size: 12px;
    }
    
    .bgg_link {
        margin-left: 10px;   
    }
    
    .bgg_icon {
        width: 75px;
    }
    
}


@media only screen and (min-width: 1200px) {
    .data-grid {
        display: grid;
        grid-template-columns: 150px 1fr 100px;
        column-gap: 20px;
    }
    
    html {
        font-size: 16px;
    }
}