
/* 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;
  animation:swap 8s infinite;
}

 #links li {
    display:inline;
    padding:14px 16px;
}
#links a:hover {
    color:blue;
    background-color:red;
}
#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;
  
  
  
}






#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;
    animation:swap 8s infinite;
  
}

#page_banner { 
    background-color:blue;
    height:fit-content;
    border:20px dotted green;
    
    text-align: center;
    width:100%;
    animation:swap 8s infinite;
}

#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;

}

/* From Uiverse.io by satyamchaudharydev */ 
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

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

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



