/*
// Extra small devices (portrait phones, less than 34em)
@media (max-width: 33.9em) { ... }

// Small devices (landscape phones, less than 48em)
@media (max-width: 47.9em) { ... }

// Medium devices (tablets, less than 62em)
@media (max-width: 61.9em) { ... }

// Large devices (desktops, less than 75em)
@media (max-width: 74.9em) { ... }

// Extra large devices (large desktops)
// Extra small devices (portrait phones, less than 34em)
// No media query since this is the default in Bootstrap

// Small devices (landscape phones, 34em and up)
@media (min-width: 34em) { ... }

// Medium devices (tablets, 48em and up)
@media (min-width: 48em) { ... }

// Large devices (desktops, 62em and up)
@media (min-width: 62em) { ... }

// Extra large devices (large desktops, 75em and up)
@media (min-width: 75em) { ... }
*/

body {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.navbar {
    margin-bottom: 2rem;
}

.carousel {
  margin-bottom:2rem;
}

.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}

.carousel-caption {
  left: 10%;
  right:10%;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
 
h1.display-3 {
  font-size: 3.5rem;
  font-weight: 400;
}
 
pre code {
  color:#bd4147;
  background-color:#f7f7f9;
  display:block;
  padding: 5px;
}
 
IMG.main-software-icon {
  width:40%;
  margin: 0 20px 0 20px;
}
 
DIV.software-header {
  margin-bottom:20px;
}

.upper-right-version {
  font-size: .7rem;
  color:#BBB;
}

.version-label {
  margin-bottom: 10px;
}

.card-img-top {
  width:100%;
}
.documentation H1 {
  font-weight: bold;
  font-size:1.5rem;
  text-align:center;
}
.documentation H2 {
  font-size:1.2rem;
  border-bottom: 1px solid #CCC;
  padding-top:10px;
}
.documentation H3 {
  font-size:1rem;
  padding-top:10px;
}
.documentation img {
  margin:0 auto 0 auto;
  display:block;
  max-width:100%;
  box-shadow: 3px 3px 5px #CCC;
  border: 1px solid #DDD;
  padding:3px;
}
.documentation blockquote {
  margin-left: 5%;
  margin-right: 10%;
  border-left: 0.4rem solid #DDD;
}

.documentation blockquote p {
  font-size: small;
  font-style: italic;
  color: #AAA
  padding-left: 20px;
  margin-left:20px;
  line-height: 2;
}
@media (min-width: 544px) and (max-width:62.9em) {
  .card-deck .card {
    display:block;
    width:auto;
  }
  .card-block {
    width:100%;  
  }
  .hidden-md-down {
    display: none !important;
  }
}
@media (min-width: 48em) {
  IMG.main-software-icon {
    width:100%;
    margin: 0 20px 0 20px;
  }
.documentation img {
  max-width:40rem;
}
  
}
@media (min-width: 63em) {
  #carousel-main {
    width:900px;
  }
  #home-deck.card-deck-wrapper {
    width:600px;
  }
  .card {
    display:block;
    width:1%;
  }
  .card-deck .card {
    display:table-cell;
    width:1%;
  }
  #home-deck .card-block {
    width:300px;  
  }
  .card-block {
    width:250px;  
  }
  .hidden-md-down {
    display: block;
  }
}
@media (max-width: 47.9em) {
  .carousel-caption.text-xs-left H1 {
      font-size:1.5rem;
  }
  .carousel-caption.text-xs-left P {
      font-size:1rem;
  }
}
@media (min-width: 75em) { 
  #carousel-main {
    width:900px;
  }
  #home-deck.card-deck-wrapper {
    width:600px;
  }
}