html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.shadow {
    -moz-box-shadow: 3px 3px 5px 6px #ccc;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow: 3px 3px 5px 6px #ccc;
    border-radius: 4%; /*supported by all latest Browser*/
    -moz-border-radius: 4%; /*For older Browser*/
    -webkit-border-radius: 4%; /*For older Browser*/
    background-color: lightgray;
    padding: 5px;
    margin: 5px;
    margin-right: 10px;
    max-width: 350px;
    min-width: 350px;
    min-height: 50px;
    max-height: 200px;
    /*width: 500px;
    height: 500px;*/

}

.bigshadow {
    -moz-box-shadow: 3px 3px 5px 6px #ccc;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow: 3px 3px 5px 6px #ccc;
    border-radius: 4%; /*supported by all latest Browser*/
    -moz-border-radius: 4%; /*For older Browser*/
    -webkit-border-radius: 4%; /*For older Browser*/
    background-color: lightgray;
    padding: 5px;
    margin: 5px;
    margin-right: 10px;
    max-width: 800px;
    min-width: 800px;
    min-height: 50px;
    /*max-height: 350px;*/
    border: solid 1px black;
    margin: 20px;
    padding: 20px;
}

.longshadow {
    -moz-box-shadow: 3px 3px 5px 6px #ccc;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow: 3px 3px 5px 6px #ccc;
    border-radius: 4%; /*supported by all latest Browser*/
    -moz-border-radius: 4%; /*For older Browser*/
    -webkit-border-radius: 4%; /*For older Browser*/
    background-color: lightgray;    
    max-width: 350px;
    min-width: 350px;
    min-height: 50px;
    border: solid 1px black;
    margin: 20px;
    padding: 20px;
}

.wideshadow {
    -moz-box-shadow: 3px 3px 5px 6px #ccc;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow: 3px 3px 5px 6px #ccc;
    /*border-radius: 6%;*/ /*supported by all latest Browser*/
    /*-moz-border-radius: 6%;*/ /*For older Browser*/
    /*-webkit-border-radius: 6%;*/ /*For older Browser*/
    background-color: beige;
    padding: 15px;
    margin: 15px;
    margin-right: 10px;
    max-width: 100%;
    width: Calc(100% - 25px);
    min-height: 50px;
    border: solid 1px black;    
}

.shadowform {
    -moz-box-shadow: 3px 3px 5px 6px #ccc;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow: 3px 3px 5px 6px #ccc;
    border-radius: 4%; /*supported by all latest Browser*/
    -moz-border-radius: 4%; /*For older Browser*/
    -webkit-border-radius: 4%; /*For older Browser*/
    background-color: lightgray;
    padding: 5px;
    margin: 5px;
}