p {font-family: sans-serif;
    font-size:90%;
    margin-right:5px;
    text-align: justify;
    text-justify: inter-word;}
ul {font-family: sans-serif;
    font-size:90%;}
ol {font-family: sans-serif;
    font-size:90%;
    counter-reset:item;}
div {
     border: 2px solid;
     padding: 20px; 
     width: 300px;
     resize: both;
     overflow: auto;
}
h1 {
    padding-top:  10;
    padding-bottom: 10;
}
header{
    background-color: #daa18e;
    padding: 5px 10px
}
main{
    padding: 10px 30px
}
footer{
    padding: 5px 10px
}
hr{
    height:2px;
    color:rgb(10, 0, 0);background-color:rgb(10, 0, 0)"
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
