@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Indie+Flower&family=Patrick+Hand&family=Tangerine:wght@400;700&display=swap');

body{
margin:0px;
background-image: url("VellumPaper.jpg");
background-size: 150%;
background-position: center;
font-family: 'Caveat', cursive;
}

.loader{
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color: white;
    transition:opacity 0.75s, visibility 0.75s;
    z-index:1;
    display:flex;
    justify-content: center;
    align-items: center;
    }
    
    .loader-hidden{
    opacity:0;
    visibility:hidden;
    transition-delay: 0.5s;
    }

h2{
font-size: 2.1rem;
font-weight: 400;
margin-left: 40px;
margin-right: 40px;
max-width: 800px;
}

button{
font-family: 'Caveat', cursive;
text-align: center;
font-size: 2rem;
padding:10px;
background-color: rgba(255, 255, 255, 0);
border:none;
}

button:hover{
color:rgb(205, 147, 255);
cursor: pointer;
}
    
    #fixed{
      position: fixed;
      top:0px;
      left:0px;
      width:100%;
      height:50px;
      /* animation: animate 8s linear ; */
      /* border:solid red; */
      transition: 0.5s;
      /* background-color: rgba(255, 255, 255, 0.544); */
      display: flex;
      align-items: center;
      opacity: 0%;
      }
  
  #backButton{
       height:25px;
       margin-left: 20px;
       fill:black;
      }
  
  #backButton:hover{
  fill:rgb(205, 147, 255);
  cursor:pointer;
  }
  
  #homeButton{
  height:24px;
  margin: 20px;
  fill:black;
  }
  
  #homeButton:hover{
    fill:rgb(205, 147, 255);
    cursor:pointer;
  }
  
  .visible{
    animation: animate 2s linear ;
    border:groove 2px red;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    
    @keyframes animate{
        0%{
          opacity: 0;
        }
        100%{
          opacity: 100;
        }
      }

#context{
/* border:solid green; */
max-width:900px;
width:900px;
border-bottom: solid black 2.5px;
/* max-width: 770px; */
}

#journalEntries{
/* border:solid purple; */
max-width:900px;
width:900px;
height:75px;

/* max-width: 770px; */
}

#entryNumber{
/* border:solid blue; */
max-width: 875px;
width:875px;
padding-left: 25px;

/* max-width: 770px; */
}

#navContainer{
width:100%;
/* border:solid red; */
height:100vh;
height:100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

#journalImg{
/* border:solid green; */
height:500px;
width:400px;
transform:translateY(5%);
background-image: url("SunshineJournal.png");
background-position: 68% 50%;
background-size: 120%;
}