/* FONTS */
@font-face {
    font-family: "mainFont";
    src: url("../fonts/YanoneKaffeesatz-VariableFont_wght.ttf");
}
@font-face {
    font-family: "iconFont";
    src: url("../fonts/Sixtyfour-Regular.ttf");
}

/* If you have additional containers or elements that need to stretch the full width: */
body, html {
  margin: 0; /* Remove any default margin */
  padding: 0; /* Remove any default padding */
  width: 100%; /* Ensure the body and html take up the full width */
  height: 100%; /* Ensure the body and html take up the full height */
  box-sizing: border-box; /* Include padding and border in the element's total width */
}

h1{
    font-size: 40px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 5px;
}
h2{
    font-size: 22px;
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 3px;
}
h3{
    font-size: 18px;
    font-weight: 200;
    margin-top: 8px;
    margin-bottom: 3px;
}
html, body{
    font-size: 16px;
    line-height: 22px;
    font-weight: 200;
}

.centered{
    text-align: center;
}
.invisible{
    display: none;
}

/* Variables */
:root {
    --pano-transition-height: 75px;
    --outer-width: 1080px;
  }

/* FORM */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "\2665";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 2px;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 26px;
    font-family: "iconFont";
  }
  
  input:checked + .slider {
    background-color: #151515;
    color: white;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #494949;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(54px);
    -ms-transform: translateX(54px);
    transform: translateX(54px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }


  @media screen  and (max-width: 960px) {
    h1{
      font-size: 36px;
      margin-top: 8px;
      margin-bottom: 3px;
    }
    h2{
        font-size: 20px;
        font-weight: 400;
        margin-top: 6px;
        margin-bottom: 2px;
    }
    h3{
        font-size: 16px;
        font-weight: 200;
        margin-top: 6px;
        margin-bottom: 2px;
    }
    html, body{
        font-size: 14px;
        line-height: 22px;
        font-weight: 200;
    }
  
  }