/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer {
       cursor: url("/pictures/littleeuca4.png"), pointer;
}

body  {
  background-image: url('/pictures/jellybg.jpg');
  background-color: #0818a8;
  font-size: 14px;
  color:white;
  cursor: url("/pictures/littleeuca.png"), default;
}

.hiddenbutton:hover {
    cursor: url("/pictures/littleeuca.png"), pointer;
}

a:hover {
  cursor: url("/pictures/littleeuca4.png"), pointer; 
}

.span {
 float: right; border: 1px dotted #080870; padding: 0.25em; width: 25%; margin: 0.25em 0.25em 0.25em 0;
 text-decoration: red wavy underline;
}

.indent {
    text-indent: 30px;
}

.card {
    border: #603 solid;
    padding: 0.5em;
    padding-left: 5%;
    margin: 1em auto;
    background-color: rgba(8, 24, 168, 0.5);
    color: white;
    text-align: center;
    max-width: 60%;
    
}

.card2 {
    border: #603 solid;
    padding: 0.5em;
    padding-left: 5%;
    margin: 1em auto;
    background-color: rgba(8, 24, 168, 0.5);
    color: white;
    text-align: center;
    max-width: 80%;
    
}

.scroll {
  width:150px;
  height:150px;
  line-height:3em;
  overflow:auto;
  padding:5px;
  background-color: rgba(8,24,168,0.5);
  border: #603 solid;
}

#banner {
  height: 50px;
  width: 100%;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  
}
#banner .scroll2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: fit-content;
  white-space: nowrap;
  animation: loop 30s linear infinite;

}
@keyframes loop {
  0% {transform: translateX(0%);}
  100% {transform: translateX(-50%);}
}



/*status cafe*/
.statuscafe {
    padding: .5em;
    background-color: white;
    border: 1px solid midnightblue;
}
.statuscafe-username {
    margin-bottom: .5em;
}
.statuscafe-content {
    margin: 0 1em 0.5em 1em;
    background-color: white;
}

/*-------MUSIC PLAYER BY GLENTHEMES-------*/
#glenplayer02 {
  display:flex;
  z-index:99;
   width:100%;
  /*position:absolute;
   top:10px;
  right:100px;*/
  }
  #glenplayer02 a {
    text-decoration:none;
  }
   
  #glenplayer02 > div {
  align-self:center;
  -webkit-align-self:center;
  }
   
  .music-controls {
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  -moz-user-select:none;
  width:20px;
  font-size:25px;
  cursor: url("/pictures/littleeuca.png"), pointer; 
  vertical-align: middle;
  }
  
  .jukebox {
    font-size: 20px;
    font-weight: bolder;
    color:white;
    border-color:red;
    background-image: url(/pictures/jellyfloat.gif);
    background-size: cover;
    background-position: center;
    border:#000b5b;
    padding: 10px;
    border-radius: 8px;
  }

  .playy, .pausee {color:#ffffff; 
    /* text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0; */
  } /* color of play & pause buttons */
   
  .pausee {
    display:none;
  }
   
  .sonata {
  margin-left:10px;
  font-family: 'kosugimaru';
  font-size:20px;
  font-weight: bold;
  line-height:40px;
  text-align:center;
  }
     
  .labeltext {
  margin-left:0px;
  position: relative;
  bottom:10px;
  font-family: 'kosugimaru';
  font-size:32px;
  font-weight: bold;
  line-height:40px;
  text-align:center;
  }


.sonata, .music-controls .sonata {
  -webkit-text-fill-color: transparent;
  background-color: #ffffff;
  background-image: url(/pictures/jellies.gif);
  background-clip: text;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align:center;
  color: white;
  /* text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0; */
}
/* MUSIC PLAYER END */


/*slider*/
.sliderbody {
  display: grid;
  place-items: center;
}

.slider {
  width: 100%;
  max-width: 800px;
  height: 350px;
  position: relative;
  overflow: hidden; /* <===  */
  border-radius: 15px;
}

.slide {
  width: 100%;
  max-width: 800px;
  height: 350px;
  position: absolute;
  transition: all 0.5s;
  text-align:center;
}

.captiontext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 10, 0.2);
}

.slide img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.btn {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  z-index: 10px;
  cursor: pointer;
  background-color: #fff;
  font-size: 18px;
}
.btn:active {
  transform: scale(1.1);
}
.btn-prev {
  top: 45%;
  left: 2%;
}

.btn-next {
  top: 45%;
  right: 2%;
}

/*slider end*/

/*box row*/
.flex-container {
  display: flex;
  flex-direction: row;
  margin: 0 7vw 0;
  box-sizing: border-box;
}

/*box column*/
.flex-container2 {
  display: flex;
  flex-direction: column;
  margin: 0 7vw 0;
  justify-content: space-evenly;
  box-sizing: border-box;
}

/*NAVIGATION*/
/* Add a background color to the top navigation */
.topnav {
  background-color: #000b5b;
  overflow: hidden;
  top: 0; /* Position the navbar at the top of the page */
  margin: 0 auto;
  width: max-content;

}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #fa0738;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #acdae8;
  color: #fa0738;
}

/* Add a color to the active/current link */
.topnav .active {
  background-color: #ff5473;
  color: white;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #fa0738;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.dropdown:hover .dropbtn {
  background-color: #fa0738;
  color: #000b5b;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #acdae8;
  color: #fa0738;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


.main {
  margin-top: 20px; /* Add a top margin to avoid content overlay */
}

.floating {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }

  50% {
      transform: translateY(-20px);
  }

  100% {
      transform: translateY(0);
  }
}

/* responsive gallery */
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: 100%;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* responsive gallery end */