body {
    font-size:1.2rem;
    font-family: 'kosugi', Verdana;
    color: #78D4D3;
    background: url("/img/ow.jpg");
    background-color: black;
    background-size: cover
}

img { 
  max-width: 100%;
}


h1 {
    font-family: 'star', verdana
}


a {
    color: #E79740;
}


 table, th, td {
  background-color: rgba(0,0,0, 0.6);
  padding: 5px;
  overflow: auto;
  border: 0px
}

.one {
  text-align: center
  }

table {
  margin: auto;
  text-align: left;
   width: 100%
}


.header {
    height:300px;
    background: url("/img/tiles/blob.gif");
    
}

marquee {
    background-image: linear-gradient(mintcream, lightblue, skyblue);
    height: 3%;
    font-size: 1.5rem;
    color: #17262B;
}

.tab {
  overflow: hidden;
}
.tab .active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px;
  border-top: none;
  overflow: auto;
  height: inherit
}

button {
    font-size:20px;
    background-image: linear-gradient(mintcream, lightblue, skyblue);
    color: #17262B;
    border-radius: 10%;
}

.dropdown {
  float: left;
  overflow: hidden;
  border-radius: 5px
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: #17262B;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 4px;
  border-radius: 10%;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  font-family: Arial;
  margin: auto;
}

/* Links inside the navbar */
.navbar a {
  font-size: 16px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #375159;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-image: linear-gradient(mintcream, lightblue, skyblue);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 10%;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: mintcream;
  border-radius: 10%;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 10%;
}

@font-face {
  font-family: kosugi;
  src: url(KosugiMaru-Regular.ttf);
}

@font-face {
  font-family: star;
  src: url(Starborn.otf);
}

.awa img {
  width: 250px
}

.waw img {
  width: 100px
}

.waa img {
  width: 150px
}

/* accordion stuff */
.accordion {
  font-size:20px;
    background-image: linear-gradient(cornsilk, gold, darkorange);
    color: #17262B;
  cursor: pointer;
  padding: 18px; 
  width: 400px;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
    display: inline-block;
    margin-left: 20px;
    border-radius: 50px;


}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  max-height: 0;
    margin-left: 20px;
    height: 240px;
  overflow: auto;
  transition: max-height 0.2s ease-out;
}


/* tooltip stuff */

.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgba(0,0,0, 0.6);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}