/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  margin:0;
}

h3 {
  margin-top: 5px;
}
.banner {
  margin:0;
  background-color: #17573c;
}

.banner-text{
  margin:0;
  padding:20px;
  font-size:24px;
  font-weight:bold;
  color:white;
}

.game-card {
  margin: 0px;
  padding: 10px;
  column-gap: 10px;
  display:grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: 35px 115px;
  border-top: 1px dashed #17573c;
}

.game-card:first-child {
  border: none;
}

.game-pic-container{
  overflow:hidden;
  grid-row: 1/3;
  border-radius:15px;
  display: flex;
  justify-content: center;
}

.game-pic {
  height: 150px;
}

.game-link {
  font-size:20px;
  font-weight: bold;
  text-decoration: none;
  color:#17573c;
}

.game-description {
  margin: 0;
}

.main-column {
  display:flex; 
  flex-direction:column
}

.main-grid {
  margin: 0px 0px 0px 0px;
  /* min-width:650px; */
  /* max-width: 1700px; */
  
  display:grid; 
  align-self:center; 
  justify-self:center; 
  grid-template-columns:200px minmax(200px, 650px) 200px;
}

.music-card {
  margin: 10px 0 0 0;
  padding: 10px 10px 10px 0px;
  column-gap: 10px;
  display:grid;
  grid-template-columns: 125px 1fr;
  grid-template-rows: 35px 90px;
}

.music-pic-container {
  overflow:hidden;
  grid-row: 1/3;
  border-radius:15px;
  display: flex;
  justify-content: center;
}

.music-pic {
  height: 125px;
}

.music-title {
  font-size:20px;
  font-weight: bold;
  text-decoration: none;
  color:#17573c;
}

.section {
  /* width: 85%; */
  min-width:100px;
  margin: 10px 10px 10px 10px;
  padding: 10px 20px 10px 20px;
  /* align-self:center;
  justify-self:center; */
  border-radius: 10px;
  border: 1px solid #17573c;
  display: flex;
  flex-direction: column;
}

h1,h2,h3 {
  color: #17573c;
}