body {
        background: #9dd6eb;
background: linear-gradient(0deg, rgba(157, 214, 235, 1) 0%, rgba(187, 235, 252, 1) 50%, rgba(217, 244, 255, 1) 100%);
        display: grid;
        place-items: center; /* Centers both horizontally and vertically */
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
   
#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%;
   background-color: pink;
   background-size: cover;
   background-repeat: no-repeat;
 min-height: 700px;
 border: 6px ridge;
 border-color: #FF4D70;;
 border-radius:15px;
 overflow: hidden;
 padding: 15px;
}

.columnflex {
 display: flex;
 flex-direction: column;
 gap: 10px;
}


#title-div {

 width: 100%;
 box-sizing: border-box;
 border: 2px dashed;
 padding: 15px;
}

#title-div span {
 font-size: 45px; 
}

.responsive-flex-box {
 display: flex;
 flex-direction: row;
 width: 100%;
 gap: 5px;
 box-sizing: border-box;
 background-color: yellow;
 padding: 5px;
}

.responsive-flex-item {
  background-color: red;
  width: 50%;
   box-sizing: border-box;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#rfi-small {
 width: 30%;
 background-color: brown;
}

#rfi-big {
 width: 70%; 
 background-color: green;
}


.medium-header {
 width: 100%;
 background-color: lightblue;
  box-sizing: border-box;
  padding: 10px;
  border: 3px dotted;
}

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

.standard-textbox {
  width: 100%;
  max-height: 370px;
  overflow: auto;
  background-color: lightblue;
  box-sizing: border-box;
  padding: 10px;
  border: 3px dotted;
}

.standard-textbox span {
  font-size: 20px;
}

.return-and-audio {
 height:205px;
 width: 100%;
 background-color: lightblue;
 box-sizing: border-box;
   padding: 10px;
  border: 3px dotted;  
}

.return-and-audio button {
 width: 100%; 
 height: 70px;
 padding: 10px;
 font-size: 20px;
}

#showcase-box {
 width: 100%;
 height: 600px;
 overflow: auto;
 background-color: blue;
 box-sizing: border-box;
   padding: 10px;
  border: 3px dotted;  
}

#button-box {
 width: 100%;
 min-height:107px;
 background-color: blue;
 box-sizing: border-box;
   padding: 10px;
  border: 3px dotted;
}

 /* style for smaller devices */
    
    @media screen and (max-width: 768px) {
      
      #content {
       width: 100%; 
       min-width: 0;
      }
      
      .massholder {
       width: 100%; 
       max-height: none;
       min-height: 0;
      }
      
      #everything-box {
      max-height: none;
      }      
      
      .responsive-flex-box {
       flex-direction: column; 
      }
      
      #rfi-small {
      width: 100%;
        min-height: 0;
      }
      
      #rfi-big {
      width: 100%;
        min-height: 0;
      }
      
    }