


 body {
        background-color: lightblue; 
        display: grid;
        place-items: center; /* Centers both horizontally and vertically */
    }
   
#content {
  display: flex;
  align-items: center;
  justify-content: center;

      
  width: 50%;
  max-width:1100px;
  min-width: 1100px;
  padding: 2px;
   box-sizing: border-box;
}

.massholder {
 box-sizing: border-box;
 width: 100%;
 max-height: 1000px;
 min-height: 1000px;
 background-color: lightblue;
 border: 6px ridge;
 border-color:#ff3b58;
 border-radius:15px;
 overflow: hidden;
 
}

.columnflex {
 display: flex;
 flex-direction: column;
 align-items: center;

}

#title-box {
  background-image: url(https://files.catbox.moe/0fxyxk.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height:180px;
  border:6px ridge;
  border-color: #ff3b58;
  margin-top: -5px;
  overflow: hidden;
}

#button-box {
  width: 100%;
  max-height:45px;
  min-height:45px;
   display:flex;
    flex-direction: row;
}

#everything-box {
  background-color: pink;
  width: 100%;
  max-height:670px;
  min-height:670px;
}

#footer-box {
  background-color: dodgerblue;
  width: 100%;
  max-height:130px;
  min-height: 130px;
  border:6px ridge;
  margin-bottom: -50px;
}

 .importantpagebutton {
        width: 25%;
        border: 3px groove;
        border-color: #ffa95e;
        background-color:#ffde66;
        font-family: impact;
        font-size: 20px;
        color:#ff4242 ;
      }

.adjustable-row-flex {
  display: flex;
  flex-direction: row;
  padding: 10px;
  gap: 10px;
  box-sizing: border-box;
  
  
}

.adjustable-row-flex-item {
 padding: 10px;
box-sizing: border-box;
border: 3px dashed;
border-radius: 2px;
}

.adjustable-row-flex-item-small {
  background-color: lightgreen;
  width: 25%;
  height: 100%;
}

.adjustable-row-flex-item-big {
  background-color: red;
  width: 50%;
  height: 100%;
}

.standard-text-box {
  background-color: lightyellow;
  height: 300px;
  overflow: auto;
  padding: 10px;
  box-sizing: border-box;
}

.small-text-box {
  background-color: lightyellow;
  height: 250px;
  overflow: auto;
  padding: 10px;
  box-sizing: border-box;
}

.small-header {
 font-size: 20px; 
}

.medium-header-box {
background-color: lightyellow;
padding: 5px;
}

.medium-header-box span {
  font-size: 24px;
}

.standard-text-box-text {
  font-size: 18px;
}

#big-image-box {
  width: 100%;
  height: 255px;
  overflow: hidden;
  background-color: lightyellow;
}

#big-image-box img {
  width: 100%;
  max-height: 255px;
  object-fit: cover;
}

.button-list-holder {
    box-sizing: border-box;
  padding:5px;
 display: flex;
 flex-direction:column;
 gap: 10px;
 background-color:lightyellow;
 overflow:auto;
 max-height:250px;
 width: 100%;
}

.button-list-holder button {
 flex-shrink: 0;
 height:60px; 
 width: 100%;
}

#title-flexbox {
 height: 100%; 
 width:100%;
 display: flex;
}

#header-image {
    background-size: 100%;
   width:40%;
  height: 100%;
   
  
}

#header-image img {
 width: 550px; 
 margin-top:-25px;
 filter: drop-shadow(1px 1px 10px white);
}

#title-text-box {

 height: 100%;
 width:60%;
 display: flex;
 justify-content: center;
 align-items: center;
}

#title-text-box span {
 font-size: 70px; 
  font-family: impact;
  color: #ff3b3b;
  text-shadow: #ffcc00 1px 0 10px;
}

#title-flexbox-mobile {
display: none;
height: 100%;
width: 100%;
background-image: url(https://files.catbox.moe/1cxzw1.png);
background-size: 100%;
background-repeat: no-repeat;
}

 /* style for smaller devices */
    
    @media screen and (max-width: 768px) {
      
      #content {
       width: 100%; 
       min-width: 0px;
      }
      
      .massholder {
       width: 100%; 
       max-height: none;
      }
      
      #everything-box {
      max-height: none;
      }
      
      
      .adjustable-row-flex {
        flex-direction: column;
      }
      
      .adjustable-row-flex-item {
       width: 100%; 
      }
      
      #divone {
       order: 1; 
      }
      
       #divtwo {
       order: 2; 
      }
      
       #divthree {
       order: 3; 
      }
      
      #header-image {
      max-width: 350px;
      margin-top:0px;
      }
      
      #title-flexbox {
       display: none; 
      }
      
      .importantpagebutton {
       font-size: 15px; 
      }
      
      #title-flexbox-mobile {
       display: block; 
      }
    
    }
    /* style for smaller devices */