/* CSS reset, dit niet aanpassen! */

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}


html {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    text-align: center;
  }
  h1 {
    font-size: 1.2rem;
    color: white;
  }
  p {
    font-size: 1.4rem;
  }
  .fixed-top {
    width: 100%;
    height: 45px;
    margin: 0;
    padding: 10px 0px;
    border-bottom: 5px solid #293578;
    grid-column: 1/3;
    grid-row: 1/2;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding-bottom: 60px;
    background-color: aliceblue;
  }
  .clocktitle {
    float: left;
    height: 40px;
    font-family: "Verdana", "Arial", sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    padding-left: 20px;
  }
 .clockheading {
   position: fixed;
   left: 60%;
   height: 40px;
   font-family: "Verdana", "Arial", sans-serif;
   font-size: 20px;
   font-weight: bold;
   line-height: 20px;
   padding-right: 20px;
 }
 .clockdatetime {
    position: fixed;
    left: 70%;
    height: 40px;
    font-family: "Verdana", "Arial", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    padding-right: 20px;
 }
  body {
    display: grid;
    grid-template-columns: 50vw 50vw;
    grid-template-rows: 10vh 35vh 55vh 5vh;
    margin: 0;
    background-image: url('img/mozart.jpg');
  }
  .content {
    padding: 30px;
    
  }
  .card-grid {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-row: 2/3;
    grid-column: 1/3;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-bottom: 10px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;

  }
  .card-grid2 {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-row: 3/4;
    grid-column: 1/3;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    padding-bottom: 10px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .card {
    background-color: white;
    box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
  }
  .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #034078
  }
  .state {
    font-size: 1.2rem;
    color:#1282A2;
  }
  .slider {
    -webkit-appearance: none;
    margin: 0 auto;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background: #5cffb0;
    outline: none;
  }
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #037820;
    cursor: pointer;
  }
  .slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50% ;
    background: #03780d;
    cursor: pointer;
  }
  .switch {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  
  tr {
    border: 1px solid white;
    font-family: "Verdana", "Arial", sans-serif;
    font-size: 20px;
  }
  th {
    height: 20px;
    padding: 3px 15px;
    color: #034078
    
    }
  td {
    height: 20px;
    padding: 3px 15px;
  }
  .tabledata {
    font-size: 20px;
    color:#1282A2;
    padding-left: 5px;
    padding-top: 5px;
    height:   25px;
    border-radius: 5px;
    line-height: 20px;
    transition: all 200ms ease-in-out;
  }
  .footer {
    padding-top: 15px;
    color: rgba(140,140,140);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }