html {
    
    box-sizing: border-box;
}
* {box-sizing: inherit;
}
body{
    height: 100vh;
    /* background:#ebdcd5; */
    /* background: linear-gradient(45deg, #e9ddd7,#eedbd2); */
    /* background: linear-gradient(180deg, #e9ddd7 10%,#79665c); */
    background: repeating-linear-gradient(180deg,#928f88,#ebe0a29f 85%, #cfcf73 95%);
    /* font-family:  'Oswald', sans-serif;
    font-size:  80%;
    color: #4b2541;
    letter-spacing: 1px; */
   
}



div{
    width: 80%;
    margin: auto;
    padding:10px;
    background: #fdfdfd;
    
}
h3{
    font-family:  'Oswald', sans-serif;
    font-size:  100%;
    color: #c77100;
    letter-spacing: 1px;
    margin:2px;
    padding: 5px;
   
 }
p {
    font-family: Karla,'Times New Roman', Times, serif;
    font-size: 100%;
    line-height: 1.8;

    margin: 2px;
    padding: 5px;
    color: rgba(60, 46, 63, 0.8);
}
a:link {
  color: #312f2e;
  text-decoration: none;
  /* takes off the link standard underline */
  letter-spacing: 1px;
  /* separates the Oswald capitals for readability */

}
a:visited {
  color:#9b9693;
  text-decoration: none;
  letter-spacing: 1px;
}
a:focus {
  outline-color: rgb(236, 214, 9);
  letter-spacing: 1px;
}
a:hover {
  color:red;
  letter-spacing: 1px;
}
a:active{
   color: orange;
   letter-spacing: 1px;
}