/* Color scheme for now: */
    /* Puce: #C08497 */
    /* Snow: #FCF7F8 */
    /* French Gray: #CED3DC */
    /* Light Sky Blue: #90C2E7 */
    /* Air Force Blue: #4E8098 */

/* Making the Navigation Bar */
.navbar{
    width: 100%;
  }
  
  .navbar ul{
    list-style: none;
    background: #4E8098;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .navbar li{
    display: inline-block;
  }
  
  .navbar a{
    text-decoration: none;
    color: #FCF7F8;
    width: 90pt;
    display: block;
    padding: 14px 25px;
    font-size: 18px;
    text-align: center;
  }
  
  .navbar a:hover{
    background-color: #90C2E7;
  }
  
  
  /* Body */
  body{
      margin: 0;
      padding: 0;
      background-color: #FCF7F8;
      font-family: "Times New Roman", Times, serif;
      font-size:18px;
      display: flex;
      flex-direction: column;
  }
  
  .bodytxt{
    margin: 30px 30px 30px 30px;
    font-family: "Times New Roman", Times, serif;
    font-size:18px;
  }
  
  .appletcentertxt{
    font-family: "Times New Roman", Times, serif;
    font-size:18px;
    width: 56%;
    margin-left: 22%;
    margin-right: 22%;
  }

  img {
    width: 300px;
    max-width: 100%;
    height: auto;
    width: auto\9;
  }
  
  .marginpls{
    margin: 30px 30px 30px 30px;
    padding-bottom: 14%;
  }

  .applet{
    display: flex;
    justify-content: center;
    align-items: center;
  }


/* Footer */

/* This one in particular is so I can have a "sticky footer" that sticks to the bottom of the page and is pushed down with more context/area change */
  .content {
    flex: 1 0 auto;
  }

  /* This makes sure on mobile devices the footer goes all the way to the bottom of the screen */
  html, body {
    height: 100%;
  }
  
  footer{
    display: block;
    background: #4E8098;
    width: 100%;
    padding: 20px;
    font-size: 17px;
    color: #CED3DC;
    flex-shrink: 0;
  }
  
  .footertxt{
    color: #CED3DC;
    font-size: 13px;
  }
  
  .pallign{
    text-align: center;
    color: #CED3DC;
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  /* Formatting the main title */
  
  .header{
      text-align: center;
      font-family: "Times New Roman", Times, serif;
      font-size: 40px;
      color: #90C2E7; 
      padding: 2%;
      margin-left: auto;
      margin-right: auto;
  }
  
  .subheading{
    text-align: center;
    font-family: "Times New Roman", Times, serif;
      font-size: 28px;
      color: #C08497; 
      padding: 2%;
      margin-left: auto;
      margin-right: auto;
  }
  
  .subsubheading{
    font-family: "Times New Roman", Times, serif;
      font-size: 18px;
      color: #90C2E7; 
  }
  
  .liltitle{
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    color: #90C2E7;
    padding-top: 18px;
    max-width: 100%;
    height: auto;
    width: auto\9;
  }
  
  .liltext{
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    padding-bottom: 16px;
    color: #C08497;
  }
  
  p{
    max-width: 100%;
    height: auto;
    width: auto\9;
  }
  
  .maintitle{ 
      font-family: "Times New Roman", Times, serif;
      font-size: 40px;
      color: #4E8098;
      text-align: center;
  }
  
  
/* Image Stuffs */
    .puce{
      background: #C08497;
      width: 300px;
      height: 400px;
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
      border: 2px solid #C08497;
    }
  
    .skyblue{
      background: #90C2E7;
      width: 300px;
      height: 400px;
      position: absolute;
      top: 40px;
      left: 40px;
      z-index: 1;
      border: 2px solid #90C2E7;
    }
  

  /* The Button Link */
  holding{
    font-size: 18px;
  }

  .geogebralink{
    text-decoration: none;
    background-color: #FCF7F8;
    color: black;
    border: 3px solid #90C2E7;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
  }

  .center{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  a.ex1:link, a.ex1:visited {
    background-color: #FCF7F8;
    color: black;
    border: 2px solid #90C2E7;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }

  a.ex1:hover, a.ex1:active {
    background-color: #90C2E7;
    opacity: 0.9;
  }
  