.topgraphic2 {
  padding: 0;
  margin:0;
  display: flex;
  min-width: 900px;
  height: auto;
  left: 0;
  
  background-image: url(/11-resources/02-images/stars_background.png); 
  background-repeat: repeat-x;
  background-position: left;
  
}


.topgraphic2 img {
position: relative;
left: 0;
min-width:1440px;
max-width: 1440px;
}


.pagecontent_trans {
    background-color: transparent;
    position: relative;
   
    height: auto;
    
    width: 100vw;
    max-width: 864px;
    min-width: 600px;
    
    margin-left: auto;
    margin-right: auto;
    margin-top: -3rem;
    
    padding: 0px;

}


.escape_hatch
{
  position: relative;
  height:43px;
  width: 240px;
  margin-left: auto;
  margin-right:auto;
  margin-top: -1rem;
  text-align: center;
  background-color: transparent;
  border: none;
}

.escape_hatch:hover
{
  cursor: url(/11-resources/02-images/Cursor_Cl.png), auto;
}

.escape_hatch a {
    background-image: none;
    background: solid;
    
    box-sizing: border-box; /*Makes element size inclusive of all border and padding*/
    display: block; /*Sets background to element size (instead of just text)*/
    background-color: var(--Button_Default);
    height: 43px;
    width: 240px;
    
    margin-top: 0px;
    margin-right: 8px;
    margin-bottom: 8px;
    margin-left: 8px;
    
    /*Border radius order: top-left, top-right, bottom-right, bottom-left */
    border-radius: 10px 10px 10px 10px;  
    
    color: var(--Background_Dark);
    font-family: var(--nav_font_fam);
    font-size: 18pt;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.5;
    
    padding-top: 4px; /*font is not centered, fixes offset*/
	

    cursor: url(/11-resources/02-images/Cursor_Cl.png), auto;
    
}

#cat_trap{
 
 display: none;
 position: absolute;
 width: 100vw;
 height: 100vw;
 top:0;
 
 background-image: url(/11-resources/04-Nonsense/raeowr.gif);
 background-size: cover;
  
}

.trap_door{
  position: relative;
  height:43px;
  width: 240px;
  margin-left: 0;
  
  top: 0;
  left:0;
  margin-top: -51px;
  margin-left: 8px;
  text-align: center;
  background-color: deeppink;
  border: none;
} 

.escape_hatch a:visited {
    background-color: var(--Button_Default);
    color: var(--Background_Dark);
}

.escape_hatch a:hover {
    background-color: var(--Button_Hover);
    
}

.escape_hatch a:active {
    font-style: italic;
}



/* Resize for smaller screens */
      @media screen and (max-width: 800px) {
        .pagecontent_trans{
        margin-left: 0.5rem;
        width: 100vw;
        margin-left: 0px;
        padding-left: 0px;
        margin-top: -1rem;
        min-width: 300px;
        }
        .topgraphic2 img{
        width: 100vw;
        min-width: 300px;
        height: auto;
        }
      
      
}