body {
    
    height: 100vh; /* Set the body height to full viewport height */
    width: 100vw; /* Set the body width to full viewport width */
    margin: 0;
    background-color: #80BCBD;
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    overflow: hidden; /* Prevents scrollbars from appearing if canvas is larger than window */
    justify-content: center;
    align-items: center;
    color: #12232F;

}

h1{
    
    font-weight: 400;
    font-style: normal;
    font-size: 150px;
    display:block;
    align-self: center;
    text-align: center;
}

h2{
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
}


.patrick-hand-regular {
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
}




.content{
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: end;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}


@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/*STATUS BAR AREA */
#status_bar{
    width: 100%;
    height: 5%;
    align-content: center;
}

#status_bar #status_bar_container{
    position: relative;
    width: 98%;
    height: 80%;
    margin: auto;
}


#status_time{
    position:relative;
    font-size: 40px;
    font-weight: bold;
    margin-left: 80%;
}

#status_icons{
    position: relative;
    
}

.status_icon {
    width: 40px;
    height: auto;
    margin: 10px;
    align-self: end;

} 

.login_icon{
    width: 200px;
    height: auto;
}

#main_content{
    height:40%;
}

/*DIV ALIGNMENT*/
.left{
    float:left;
    width: 33.33%;
    height: 100%;
    display: inline-grid;
    justify-items: start;
    justify-content: start;
    padding:10px;
}

.right{
    float:right;
    width: 33.33%;
    height: 100%;
    display: inline-grid;
    justify-items: end;
    justify-content: end;
    padding:10px;
}

.middle{
    position: relative;
    align-content: center;
}

.bottom{
    position: relative;
    align-content: end; 
}

.center{
    float:none;
    width: 33.33%;
    height: 100%;
    display: inline-grid;
    justify-items: center;
    justify-content: center;
}

.distribute_children_horizontally{
    width: 100%;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}


.distribute_childern_vertically{
    width: 100%;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top:24px;
}


.input{
    position:relative;
    width: 80%;
    height: 80px;
    background-color: white;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 25px;
    border: none;
    font-size: 40px;
    font-family: "Patrick Hand";
    color: #12232F;
    font-weight: 300;
}

.button{
    background-color: #12232F;
    position:relative;
    width: 80%;
    height: 80px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 25px;
    border: none;
    font-size: 45px;
    font-family: "Patrick Hand", cursive;
    color: white;
    font-weight: 300;
    opacity: 1;

    text-align:center;
    text-decoration:none;
}


.button:hover{
    opacity: 0.5;
  }

hr{
   
    border-top: 8px solid #bbb;
    border-radius: 20px;

}

.line {
    width: 100%;
    height: 0;
    border: 5px solid white;
    margin: 3px;
    display:inline-block;
  }

  #centre_line_text{
    width:100%;
    text-align: center;
  }



  
/*DASHBOARD AREA*/
.dashboard_indicator{
    width:auto;
    font-weight: bold;
  }

  #latest_entry_container{
    width:90%;
    height: 700px;
    background: rgba(255, 255, 255, 0.2); /* Green background with 30% opacity */
    padding: 10px;

  }

  .entry_icon{
    width: 120px;
    height: auto;
  }

  #dashboard_main_content{
    height: 50%;
  }

  .dashboard_entry_display{
    padding:10px;
    width:90%;
    font-size: 35px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .button_icon{
    width:40px  ; /* you can use % */
    height: auto;
    margin-right:20px;
  }

  .button_grey{
    background-color: #EEEEEE;
    color: black;
    position:relative;
    width: 80%;
    height: 80px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 25px;
    border: none;
    font-size: 45px;
    font-family: "Patrick Hand";
    font-weight: 300;
    opacity: 1;


    font-family: "Patrick Hand", cursive;  
    text-align:center;
    text-decoration:none;
}

.dashboard_texts{
  width: 100%;
  height: 100%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  clear: both;
  overflow: scroll;
}

.entry_inner_text{
  margin:auto;
}

  /*NEW ENTRY*/
 
  #new_entry_popup_container{
    width: 100%;
  }

  #new_entry_popup{
    background-color: #12232F;
    width:90%;
    height:auto;
    padding:20px;
    color: white;
    border-radius: 25px;
  }

  #new_entry_textarea{
    width:90%;
    height:500px;
    border-radius: 25px;
    font-size: 45px;
    font-family: "Patrick Hand";
    font-weight: 300;
    padding:10px;
  }

  .new_entry_button{
    width: 25%;
    margin: 40px;
  }

  .hidden{
    display:none;
  }


  /*SHOW ENTRY AREA */
  .thing_entry{
    width:90%;
    height:300px;
    background: rgba(255, 255, 255, 0.2); /* Green background with 30% opacity */
    padding: 10px;
    margin-top:20px;
    margin-bottom: 20px;
    text-align: center;
    overflow:scroll;
  }

  /*List of all entries Area */

  .all_entries_thing_entry{
    width:90%;
    height:120px;
    background: rgba(255, 255, 255, 0.2); /* Green background with 30% opacity */
    padding: 10px;
    margin-top:20px;
    margin-bottom: 20px;
    justify-content: flex-start;
    color: #12232F;
    text-decoration: none;
    
  }

  .all_things_text_container{
    overflow: scroll;
    height:95%;
    width:95%;
  }

  #all_entries_scroll{
    overflow:scroll;
    height: 1050px;
    margin-bottom: 40px;
  }

  #header_text{
    overflow: hidden;
  }

  /**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 30px;
  height: 30px;
  border-radius: 13px;
  background-color: #12232F;
  color: #12232F;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-small{
  width: 20px;
  height:20px;
  border-radius: 7px;
}
.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 13px;
  background-color: #12232F;
  color: #12232F;
}

.dot-small::before, .dot-small::after{
  width:20px;
  height: 20px;
  border-radius: 7px;
}
.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
  left:-20px;
}
.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
  left:20px;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

.dotContainer {
  display: inline-block;
  margin: auto;
}