/* CREATED BY RS ON 16/6/25 */

@import "factfile.css";

/* Changes to rest of page needed to make sticky work */

body {
    background: #fff;
}

.header-main {
   background: #00193c;
}

.container {
    overflow: initial;
}

.footer-main {
    position: relative;
    overflow: hidden;
    bottom: 0;
    width: 100%;
}

/* Sticky class */
.side-panel {
    position: sticky;
    top: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.blackboard {
    background: #000;
    color: #fff;
    width: 235px;
    height: 180px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 10px;
    border: 7px solid #ce661c;
    font-family: 'Comic Sans MS', cursive;
    font-size: 25px;
    position: relative;
    overflow: hidden;
}

.blackboard-writing {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.blackboard-writing > div {
    display: none;
}

.blackboard-writing > div:first-of-type {
    display: block;
} 

.blackboard-writing > div > span {
    color: pink;
}

.line-under-blackboard {
    background: #ce661c;
    height: 10px;
    width: 245px;
    margin: 0 auto 25px;
    position: relative;
    bottom: 10px;
}

.blackboard-tools {
    width: 100%;
    position: absolute;
    bottom: 0;
    
}

.chalk {
   height: 7px;
   width: 28px;
   border-radius: 2px;
   background: white;
   position: relative;
   left: 80px;
   display: inline-block;
   vertical-align: bottom;
}

.chalk:nth-of-type(2) {
   width: 22px;
   left: 95px;
   background: pink;
}

.duster {
  display: inline-block;
   vertical-align: bottom;
   left: 120px;
   position: relative;
}

.duster-top {
    width: 36px;
    height: 7px;
    background: SandyBrown;
}

.duster-bottom {
    width: 30px;
    height: 10px;
    background: #fff;
    margin: 0 auto;
}

@media only screen and (min-width: 568px) {
    
  .blackboard {
      width: 500px;
      height: 350px;
      font-size: 50px;
      border: 10px solid #ce661c;
  }
  
  .line-under-blackboard {
      width: 520px;
      height: 15px;
  }
  
  .chalk {
      left: 200px;
      width: 35px;
  }
  
  .chalk:nth-of-type(2) {
      width: 28px;
      left: 230px;
  }
  
  .duster {
      left: 260px;
  }
  
  .duster-top {
      width: 60px;
      height: 10px;
  }
  
  .duster-bottom {
      width: 50px;
      height: 13px;
  }
}