

/* Style the tab */
.tab {
    float: left;
    border: 2px solid #652D91;
    border-right: none;
    background-color: #f6ebfa;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}

    /* Style the buttons inside the tab */
    .tab button {
        display: block;
        background-color: #944fc9;
        color: white;
        padding: 20px 16px;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        font-size: 14px;
        box-shadow: 2px 2px 9px 1px inset;
        border-radius: 10px 0 0 0;
        overflow: hidden;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ee7843;
            color: #fff;
        }

        /* Create an active/current "tab button" class */
        .tab button.active {
            background-color: #f6ebfa;
            color: #652D91;
            border: none;
        }

            .tab button.active:hover {
                background-color: #ee7843;
                border: none;
                color:white;
            }

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 16px 20px;
    border: 2px solid #652D91;
    width: 100%;
    margin:0 0 0 0;
    height: auto;
    border-left:none;
    border-radius: 0 10px 10px 0;
}
    .tabcontent p {
    font-family:'Comic Sans MS';
    line-height:30px;
    }