/* You can add global styles to this file, and also import other style files */
body{
  background-color: rgb(241, 241, 241);
}
.title-bar{
  width: 100%;
  min-height: 30px;
  background-color: aliceblue;
  padding: auto;
  margin-bottom: 8px;
}
.mb-10{
  margin-bottom: 10px;
}
.card-deck{
  margin: 0;
}
.row{
  margin: 0;
  padding: 0;
}
.slider {
  width: 100%;
  min-height: 300px;
  display: flex;
  overflow-x: auto;
}
.slide {
  width: 400px;
  flex-shrink: 0;
  height: 100%;
  margin: 0 5px 0 5px;
}
.topic-card{
  cursor: pointer;
  height: 200px;
  padding-top: 5%;
}
.media-card{
  cursor: pointer;
}
.topic-card:hover, .media-card:hover{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.media-image{
  width: 100px;
  height: 100px;
  background-color: aquamarine;
  float: right;
}
.hide{
  display: none;
}
@media screen and (max-width: 768px) {
  .topic-card{
    height: 150px;
    padding-top: 10%;
  }

  .desktop-only{
    display: none;
  }

  .media-image{
    float: left;
  }
}
/* Widths */
.w-80{
  width: 80%;
}


/*# sourceMappingURL=styles.css.map*/