
@font-face {       
font-family: 'BPnoScript';
src: url(https://humantooth.neocities.org/fonts/BPnoScript.woff) format('woff');
font-weight:normal; }

body {background-image: url('/Home%20Page%20/img/backgroundcollage.png');
    background-size: cover;
    background-color: #d3bee8;
    font-family: 'BPnoScript';
    font-size: larger;
    margin: 10%;
}

header {
    background-color:  #d3bee8;
    border-radius: 20px;
    padding:20px;
    margin-bottom: 20px;
    box-shadow: 10px 10px 9px #cdecd0;
    border-right: solid #fdfffe;
    border-bottom: solid #fdfffe;
    padding:20px;
}

header img {
max-width: 100px;
height: auto;
display: block;
margin: 0 auto;
min-width: 80%
}

nav {
    padding:10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
}

nav a {
    background-color: #cdecd0;
    padding: 10px 20px;
    border-radius: 20px; 
    text-decoration: none;
    color: #674a84;
    font-size: larger;
    font-weight: bolder;
}

nav a:hover{
  animation: wobble 1s ease-in-out 1;
  background-color: #674a84;
  color:#cdecd0;
}

.container{
    display:flex;
    gap: 20px;
    min-height: 100vh;  
    max-width: 100%;
}

.leftcolumn {
    display: flex;
    flex:1;
    flex-direction: column;
    gap: 20px;
}

.leftbox1 {
    border-radius: 20px;
    background-color: #d3bee8;
    box-shadow: 10px 10px 9px #cdecd0;
    border-right: solid #fdfffe;
    border-bottom: solid #fdfffe;
    padding:20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    max-height: 35%;
    overflow: scroll;
}

.leftbox1 a{
    color: #674a84;
    text-decoration: none;
}

.leftbox2 {
    border-radius: 20px;
    background-color: #d3bee8;
    box-shadow: 10px 10px 9px #cdecd0;
    border-right: solid #fdfffe;
    border-bottom: solid #fdfffe;
    padding:20px;
    text-align: center;
}

.leftbox3 {
    border-radius: 20px;
    background-color: #d3bee8;
    box-shadow: 10px 10px 9px #cdecd0;
    border-right: solid #fdfffe;
    border-bottom: solid #fdfffe;
    padding:20px;

}

.blinkies {
    display: flex;
    flex-direction: column;
    gap: 2px;

}

.blinkies img {
    max-width: 100%;
}

a[href*="jk-rowlings-transphobia-controversy"] img {
  display: block;
}

.clock {
    transform: scale(1.2);
}
.mainbox {
    flex:3.5;
    display:flex;
    flex-direction: column;
    height: 100vh;
    
}

.main-box-content {
    border-radius: 20px;
    background-color: #d3bee8;
    box-shadow: 10px 10px 9px #cdecd0;
    border-right: solid #fdfffe;
    border-bottom: solid #fdfffe;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    padding:20px;


}

.jrnltitle {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.fireimage {
  display: block;
  margin: 0 auto;
  padding-right: 20px;
}

.ex {
    text-align: center;
}

/* Entry sections */
.entry {
  display: none; 
  
}
.banner-container{
    overflow: hidden;
}

.banna {
    max-width: 100%;
}

.banner-scroller {
  display: flex;
  width: 100%;
}


.desk {
    float:left;
    max-width:45%;
    margin-right:20px;

}
.twentysixth {
    float:right;
    max-width: 40%;
    display: flex;
    gap: 5px;
}

.twentysixth img {
  max-width: 100%;
  height: auto;
  flex-shrink: 1; 
  width: 50%; 
  object-fit: cover; 
}



/* Show targeted entry */
.entry:target {
  display: block;
}

/* Show home by default */
.entry.default {
  display: block;
}

/* Hide home when other entry targeted */
.entry:target ~ .default {
  display: none;
}


/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }
}

@media (max-width: 600px){
  body {
    background-size: 150%;
    background-repeat: repeat-y;
  }
}

/* Wobble animation for header */
@keyframes wobble {
  16.65% { transform: skew(-12deg); }
  33.3%  { transform: skew(10deg); }
  49.95% { transform: skew(-6deg); }
  66.6%  { transform: skew(4deg); }
  83.25% { transform: skew(-2deg); }
  100%   { transform: skew(0); }
}