* {
  box-sizing:border-box;
}

:root {
  --tfSiteBlue: rgb(27,90,132);
  /* --tfSiteBlue: rgb(55,81,126); */
  /* --tfSiteBlue: rgb(0,100,143); */
  /* --tfLightSiteBlue: rgb(0,125,178); */
  /* --tfSiteLightBlue: rgb(200,233,247); */
  /* --tfSiteLightBlue: rgb(205,239,253); */
  --tfSiteLightBlue: rgb(220,245,255);

  --tfLogoBlue: rgb(0,168,243);
  --tfLogoGray: rgb(88,88,88);

  --tfTextBlue: rgb(43, 103, 182);
  --tfBlue: rgb(100,149,237);
  --tfBackBlue: rgb(220, 235, 255);
  --tfBackLightBlue: rgb(238, 245, 255);

  --tfDarkGray: rgb(33,33,33);
  --tfGray: rgb(66,66,66);
  --tfLightGray: rgb(227, 227, 227);
  --tfVeryLightGray: rgb(242,242,242);
  --tfSuperLightGray: rgb(249,249,249);
  
  /* FONT */
  --tfF-supertitle: 36px;
  --tfF-bigtitle: 30px;
  --tfF-title: 24px;
  --tfF-subtitle: 22px;
  --tfF-small: 18px;
  --tfF-smaller: 17px;
  --tfF-tiny: 16px;

  --tfFont: 18px "Poppins";

}
/* MEDIA SENSITIVE */
.menuTop {
  justify-content: space-around;
  padding: 0px!important;
  background-color: var(--tfSiteBlue);
}

.menuTop a {
  padding: 0px; 
  padding-left: 12px; 
  padding-right: 12px; 
  font-size: var(--tfF-smaller);
  font-weight: 200;
  color: white;
}

.imenu {
  border: 1px solid white;
  flex-grow: 1;
}

.homePicture {
  max-width: 28em;
}

.homeTop {
  justify-content: space-around!important;
  padding-top: 50px!important;
  padding-bottom: 50px;
}

.titleAndSubtitle {
  padding: 30px;
  max-width: 60%;
}

@media screen and (max-width: 480px) { 
  :root {
    --tfF-supertitle: 32px;
    --tfF-bigtitle: 26px;
    --tfF-title: 22px;
    --tfF-subtitle: 20px;
    --tfF-small: 16px;
    --tfF-smaller: 15px;
    --tfF-tiny: 14px;
    }
  .menuTop a {
    font-size: var(--tfF-tiny);
  }
  .imenu {
    padding: 4px!important;
  }
  .homePicture {
    max-width: 14em;
  }
  .homeTop {
    padding-top: 20px!important;
    justify-content: center;
  }
  .titleAndSubtitle {
    max-width: 90%;
  }
  .boxWhite {
    font-size: var(--tfF-small);
  }
}

body {
  font: var(--tfFont);
  height: 100%;
  width: 100%;
  margin: 0;
}

a {
  text-decoration: none;
}

.textLink {
  font-weight: bold;
  font-size: var(--tfF-subtitle);
  color: var(--tfSiteBlue);
}

.splitDash {
margin-left: 30px;
margin-right: 30px;
flex-grow:0;
width: 50px;
padding: 0px!important;
border: 4px solid var(--tfLogoBlue);
border-radius: 8px;  
}

/*******************/
/*** Text styles ***/
/*******************/
.divTitle {
  font-size: var(--tfF-subtitle);
  font-weight: 600;
  color: var(--tfDarkGray);
  padding-top: 15px;
  padding-bottom: 15px;
}

.title {
  font-size: var(--tfF-title);
  font-weight: 500;
  color: var(--tfDarkGray);
}

.subtitle {
  font-size: var(--tfF-subtitle);
  font-weight: 200;
  /* line-height: 30px; */
  color: var(--tfDarkGray);
  /* margin-left: 10%; */
  /* margin-right:10%; */
}

.foottitle {
  font-size: var(--tfF-small);
  font-weight: 200;
  color: white;
  background-color: var(--tfSiteBlue);
  padding: 20px;
}

.bigtitle {
  font-size: var(--tfF-bigtitle);
  font-weight: 600;
  color: var(--tfLogoGray);
}

.supertitle {
  font-size: var(--tfF-supertitle);
  font-weight: 600;
  color: var(--tfLogoGray);
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/**********************/
/**** CONTAINERS ******/
/**********************/

.gridCont-fullWin {
  box-sizing:border-box;
  margin: 0;
  border: 0;
  display: grid;
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  overflow: auto;
}

.flxCont-v {
  display: flex;
  flex-direction:column;
}

.flxCont-h {
  display: flex;
  justify-content: space-between; /* Spacing between items */
  align-items: center; /* Vertical centering */
  padding: 6px;
  flex-wrap: wrap;
  /* good info about flex box: https://www.samanthaming.com/flexbox30/1-flexbox-intro/ */
  /*  */
  /* Flex Box Defaults for parent container*/
  /* flex-direction: row; */
  /* flex-wrap: nowrap; */
  /* justify-content: flex-start; */
  /* align-items: stretch; */
}

.flxCont-iv {
  flex-grow: 1;
}

.flxCont-ih {
  padding: 6px;
  display: flex;
  justify-content: center;
}

.flxCont-ih a {
  padding: 0px;
}

/**********************/
/**** OTHERS ******/
/**********************/

.centerPic {
  display: block;
  margin-left: auto;
  margin-right: auto;
}