@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WindSong&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
/* @import url(//db.onlinewebfonts.com/c/8d9ff9bc181bd0af09e924237942cab5?family=WagnerScriptPro); */

@font-face {
  font-family: WagnerScriptPro;
  src: url(./fonts/wagner.woff);
}

:root {
    /* Colors */
    --pWhite: rgba(245, 236, 228, 1);
    --pbWhite: rgb(247, 228, 212);
    --ptWhite: rgba(227, 219, 211, 0);
    --pBlue: rgba(139, 164, 179, 1);
    --pGreen: rgba(156, 178, 165, 1);

    /* Images */
    --bgImage: url("../../imgs/bkg/bg10.jpeg");
    --laPalmaImage: url("../../imgs/photos/lapalma.jpg");
    --indexLine: url("../../imgs/indexLine.png");

    --animTime: 2s;
    --animTranslation: -50px;
}

.fixedSize {
    height: 100%;
    margin:0;
    padding:0;
    overflow: hidden
}

.background {
    background-image: var(--bgImage);
    background-repeat: no-repeat;
    background-position: 125% 105%;
    background-size: 50%;
}

.backgroundColor{
    background-color: var(--pWhite) !important;
}

.content{
    height: 100%;
    width: 100%;
}

.centeredBlock{
    display: block;
    text-align: center;
}

/* Switch */

/* 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;
  }
  
  /* The slider */
  .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: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--pGreen);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px var(--pGreen);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 50%;
    margin-bottom: 50%;
    /* min-height: 100%; */
  }