

            :root {
                --body-bg-image: url('background.png');
                --content: #ffffff;
            }


.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}


            body {
                font-family: "Libre Baskerville";
                margin: 0;
                background-color: #ffffff;
                background-size: 100%;
                color: #000000;
                background-image: var(--body-bg-image);
                 background-repeat: repeat;
               background-position: top left;
               background-size: 50%;
                          }

            * {
                box-sizing: border-box;
            }

            #container {
                width: 80%;
                max-width: 800px;
                border: 3px solid #000000;
                margin: 0 auto;
                margin-top: 5%;
                margin-bottom: 5%;
                height: fit-content;
            }


            #container a {
                color: #000000;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #ffffff;
                height: 10%;
                background-image: var(--header-image);
                background-size: 100%;
            }


            aside {
                background-color: #c7c7c7;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

            main {
                background-color: #ffffff;
                flex: 1;
                padding: 2%;
                order: 2;
            }



footer {
    position: relative; 
    background-color: #d6d6d6;
    width: 100%;
    padding: 1% 4%;
    text-align: center;
    overflow: visible; 
}

.tanukizai {
    position: absolute;
    left: 0;        
    bottom: 0;       
    width: 12%;
    transform: translateX(-40%) translateY(10%);
}



            h1,
            h2,
            h3 {
                color: #000000;
            }

            h1 {
                font-size: clamp(2rem, 2vw, 3.2rem);
                margin-bottom: 0%;
                text-align: center;
            }   
            
            h2 {
                font-size: clamp(.9rem, .3vw, 1rem);
                margin-bottom: -3%;
                text-align: center;
                color: #000000;
            }
            
            p {
                text-align: center;
                color: 000000;
            }

            .txt {
            font-size: clamp(.9rem, 1.2vw, 1rem);

            }
            
          .txt2 {
            font-size: clamp(0.7rem, 1.7vw, 1rem);
            line-height: 140%;
             }

          .txt3 {
            font-size: clamp(0.5rem, 1.6vw, 1rem);
            line-height: 140%;
             }


            .links {
                font-size: clamp(.9rem, 1.2vw, 1.3rem);
                margin-bottom: 40px;
                text-align: center;
                color: 000000;
            }

              .links2 {
                font-size: clamp(.9rem, 1.2vw, 1.3rem);
                text-align: center;
                color: 000000;
            }

            strong {
                color: #000000;
            }

            .box {
                background-color: #ffffff;
                border: 1px solid #000000;
                padding: 10px;
            }

            .bg1 {
                background-image: url('texture.png');
                background-repeat: repeat;
                image-rendering: pixelated;
                background-color: #cacaca;
                text-shadow: -2px -2px 0 #ffffff88, 2px -2px 0 #ffffff88, -2px 2px 0 #ffffff88, 2px 2px 0 #ffffff88;

            }

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                padding-bottom: 30px;
                text-align: center;
                font-weight: bold; 
                /* background-color: #cacaca; */
            }

            .smallheader {
            width: 90%;
            max-width:700px;
            display: block;
            margin-left: auto;
            margin-right: auto;

            }            
            
            .littleguy {
            width:7%;
            max-width: 70px;
            margin-bottom: -5%;
            display: block;
            margin-left: auto;
            margin-right: auto;
            margin-top: .5%;
            }
            



            
    /*TIMERS CSS*/


    .victor-mono/*-<uniquifier>*/ {
  font-family: "Victor Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

#all-countdowns {
  display: flex;
  gap: 5vw;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 5vh;
}

.countdown {
  display: flex;
  gap: 1vw;
  justify-content: center;
  align-items: center;
  font-family: "Victor Mono", monospace;
  flex-wrap: nowrap;
}

.time-box {
  background: #FFFFFF;
  border: 3px solid black;
  text-align: center;
  width: 13vw;
  max-width: 160px;
  aspect-ratio: 1 / 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.time-box span {
  font-size: clamp(1rem, 5vw, 4rem);
  font-weight: bold;
  color: #000000;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label {
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  color: #000000;
  border-top: 3px solid black;
  padding: 0.5vh;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}


            /* MEDIA QUERY */

@media only screen and ( max-width : 640px ) {

  #flex {
    flex-wrap: wrap;
  }

  aside {
    width: 100%;
  }

  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: -2%;
    text-align: center;
  }

  h2 {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: -5%;
    text-align: center;
    color: #000000;
  }

  p, .links, .links2 {
    text-align: center;
    color: #000000;
  }

  .tanukizai {
    width: 15%;
  }


  .txt {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
  } 

   .links {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    margin-bottom: 40px;
  } 

     .links2 {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    } 


  .time-box {
    width: 40vw;
    max-width: 160px;
    aspect-ratio: 1 / 1.2;
  }

  .time-box span {
    font-size: clamp(1.6rem, 5vw, 4rem);
  }

  .label {
    font-size: clamp(0.65rem, 2.5vw, 1.2rem);
    padding: 0.5vh;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

}
