/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"); 
@import url("https://fonts.googleapis.com/css?family=Lato:100");
@import url("https://fonts.googleapis.com/css?family=Tangerine");
@import url("https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@400..700&family=Grey+Qo&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/*==================== VARIABLES CSS ====================*/
:root {
    --header-height: 3rem;

    /*========== Colors ==========*/
    /* Change favorite color */
    --hue-color: 250; /*Purple 250 - Green 142 - Blue 230 - Pink 340*/

    /* HSL color mode */
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 45%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 99%);
    --container-color: #fff;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

    --menu-link-active-colors: var(--primary-color), var(--info-color), var(--success-color), var(--warning-color), var(--danger-color);

    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== Margenes Bottom ==========*/
    /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3.2rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0%;
  padding: 0%;

}

body {
  margin: 0%;
  padding: 0%;
  height: 100%;
  font-family: var(--body-font);
  font-size: 15px;
  background-color: var(--body-color);
  color: var(--text-color);  
  background: url(../img/stars.gif), black;
}

h1, h2, h3{
  color: white;
  padding: 1.5rem; 
  font-weight: var(--font-semi-bold);
  text-align: center;
}
#teaching-heading {
    color: white;
    padding-top: 0.10rem;
    padding-bottom: 0.5rem;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    font-size: 24px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: justify;
  }
  #desc-title{
    color: white;
    font-size: 21px !important;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: justify;
  }
  
/*==================== LAYOUT ====================*/

#desc
{
  max-width: 100%;
  font-size: 18px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: rgb(223, 221, 230);
  padding-top: 0.0rem; 
  padding-bottom: 0.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: justify;
  background: black, url(../img/stars.gif);
}
hr{
  height:2px;  
  margin-left: 0%; 
  margin-right: 0%; 
  width: 100%;
  border-style: inset;
  border-width:0; 
  background-color: white;
}

/*==================== FOOTER ====================*/

.footer{
  margin: 0%;
  float: right;
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 16px !important;
  font-weight: 400;
}


/* For small devices */

@media screen and (max-width: 480px)  {
  html {
      --big-font-size: 1.00rem;
      --h1-font-size: 1.05rem;
      --h2-font-size: .75rem;
      --h3-font-size: .50rem;
      --normal-font-size: .40rem;
      --small-font-size: .40rem;
      --smaller-font-size: .45rem;
  }
  
  
}
/* For medium devices */
/* For large devices */
