
/* Style the tab */
section.tab {
    overflow: hidden;
    margin-top: 25px;
    font-size: 0.7em;
}

/* Style the buttons inside the tab */
section.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    text-transform: uppercase;
    border-radius: 20px;
    border:5px solid black;
}

/* Change background color of buttons on hover */
section.tab button:hover {
    font-style:italic;
}

/* Create an active/current tablink class */
section.tab button.active {
    background-color: #ccc;
    color: black;
}
section.tab button.active:hover {
    font-style:normal;
}

/* Style the tab content */
.tabcontent {
    display: none;
    border-top: none;
	-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;}
}