
/* unvisited link */
a.banner_links:link {
  color: white;
}

/* visited link */
a.banner_links:visited {
  color: lightgray;
}

/* mouse over link */
a.banner_links:hover {
  color: yellow;
}

/* selected link */
a.banner_links:active {
  color: lightgreen;
}

#links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: blue;
}

 #links li {
    display:inline;
    padding:14px 16px;
}
#links a:hover {
    color:yellow;
    background-color:black;
}
#links a {
    
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
    
}




#page_container {
  position: relative;
  min-height: 100%;
  /*max-width: 30vw;*/
  margin:30px;
  
  
  
}

@keyframes yolo {
    
    0%{background-color:white;color:black;}
    50%{background-color:black;color:white;}
}

.noice{
    animation:yolo 2s infinite;
}



#content_wrap {
      
  padding-bottom: 2.5rem;    /* Footer height */
 
}

#footer {
  position: absolute;
  bottom: 0;
  width:100%;
  background-color:blue;
  height: 2.5rem;            /* Footer height */
  color : white;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom:10px;
  
}

#page_banner { 
    background-color:blue;
    height:150px;
    
    
    
    text-align: center;
    width:100%;
}

#banner_text {
    font-size:100px;
    color:white;
    
    vertical-align: middle;

}

#banner_links_div {
    height:20px;
    display:block;
    
}

#banner_link_table{
    border-collapse:collapse; 
  
    border-top:none;
    border-bottom:none;
    margin: auto;
    border-color: black white ;
   
  
}

#banner_link_table tr td {
    padding:0px 30px; 
}

#content_div{
    height:100%;
    width:100%;
    
}

#intro_div{
    
    borxder:5px solid black;
    margin:auto;
    width: 90%;
    display:flex;
    flex-direction:row;
    align-items: flex-start;
    justify-content: center;
}

#funpix_div{
    hxeight:500px;
    bxorder:5px solid green;  
    margin-top: 20px;
    margin-bottom:30px;
    max-width:1000px;
    
}

#intro_pix_div{
    height:99%; 
    width:35%;
    display: inline-block;
    borxder:5px dashed red;
    margin-right:5px;
}

#intro_img{
    height: 300px;
}

.fun_img{
    width: 400px;
    max-height:450px;
}


#intro_text_div{
    height:290px;
    wixdth:60%;
    display: inline-block;
    borsder:5px dashed green;
    margin-left:5px;
    background-color: #F2F4F4;

}

#fun_pix_table{
   
    width: 97%;
    margin:auto;
    border-collapse:collapse;
    max-width:500px;
   
}

#funpix_label{
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size:32px;
    font-weight: bold;
    text-decoration: underline blue;
    margin-left:5px;

}

.intro_text{
    font-family: "Trebuchet MS", Tahoma, sans-serif;
    font-size:16px;
    font-weight: bold;
    margin-left:5px;

}

.darkmode{
    background-color:black;
    color:white;
}


