/* Style the tab */
.linkbar {
    border: 1px solid cyan;
    background-color: rgb(0, 209, 209);
    width: 100%;
    height: 100vh;
    position: relative;
    text-decoration: none;
}

/* Style the buttons that are used to open the tab content */
.linkbar ul li {
    background-color: inherit;
    color: black;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: 0.45s;
    margin-top: 50px;
    padding-bottom: 20px;
    padding-top: 20.2px;
    text-decoration: none;
}

.linkbar ul {
    display: flex;
    text-decoration: none;
    flex-direction: column;
    list-style: none;
}

/* Change background color of buttons on hover */
.linkbar ul li:hover {
    background-color: rgb(0, 170, 204);
    /* margin-bottom: 125px; */
}

/* Create an active/current "tab button" class */
.linkbar ul li.active {
    background-color: #ccc;
}

.linkbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;

}

@media screen and (max-width: 420px) {
    .linkbar {
        height: 100%;
        width: 100%;
    }

    .linkbar ul li a {
        color: white;
        text-decoration: none;
        font-size: 18px;

    }

    .linkbar ul li {
        margin-right: 10px;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        flex-direction: row;
        text-decoration: none;
        height: 100%;
    }

    .linkbar ul {
        flex-direction: row;
        list-style: none;
    }
}

*{
    margin: 0;
    padding: 0;
}