/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #b0ccdc;
  --content-background-color: #ffffff; 
  --sidebar-background-color: #ffffff;
  --footer-background-color: #eaf2f6;

  /* Text Colors: */
  --text-color: #838d8a;
  --sidebar-text-color: #838d8a;
  --title-color:#7baac4;
  --link-color: #7fadc7;
  --link-color-hover: #b2cedd;

  /* Other Settings: */
  --border: 2px solid #9ebcc8;
  --border-button: 2px double #9ebcc8;
}