/* Style the list */
ul.tab {
   list-style-type: none;
   margin: 0;
   padding: 0;
   overflow: hidden;
   border: 1px solid #006666;
   background-color: #009999;
}

/* Float the list items side by side */
ul.tab li {float: left;}

/* Style the links inside the list items */
ul.tab li a {
   display: inline-block;
   color: black;
   text-align: center;
   padding: 14px 16px;
   text-decoration: none;
   transition: 0.3s;
   font-size: 17px;
}

/* Change background color of links on hover */
ul.tab li a:hover {background-color: #99ffff;}

/* Create an active/current tablink class */
ul.tab li a:focus, .active {background-color: #33ffff;}

/* Style the tab content */
.tabcontent {
   display: none;
   padding: 6px 12px;
   border-top: none;
}

/* Style the tab content */
.kai-top-part {
   padding: 6px 12px;
   border-top: none;
 }

.kai-top-text {
  padding: 6px 12px;
  border-top: none;
}

.tabcontent {
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

body {
  background-color: #808080;
}

img {
  border-radius: 16px;
  max-width: 20%;
  height: auto;
}

.kai-top-img {
padding: 10px;
}

a:link {
    color: #00cccc;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #006666;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #ccffff;
    text-decoration: underline;
}

/* selected link */
a:active {
    color: blue;
    text-decoration: underline;
}
