html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    animation: flashEffect 0.2s linear;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    width: 0.1px;
}


@keyframes flashEffect {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar,
body {
    background: #f2eddd;
}


.navbar-brand {
    color: rgb(0, 0, 0);
    font-size: 27px;
    text-align: center;
    margin: auto;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover {
    color: rgb(0, 0, 0);
    transform: scale(1.1);
}

.nav-link:hover {
    border-color: #000000 !important;
    color: #000;
}

.nav-tabs{
    border-color:black;
}

.nav-link{
    color: #000000;
}


.nav-link.active {
    background-color: #f2eddd !important;
    border-color: #000000 !important;
}

.tab-content {
    width: 70vw;
    align-content: center;
    margin: 20px auto;
}

.tab-content .list-group-item {
    color: rgb(0, 0, 0);
}

@media (min-width:1200px) {
    .tab-content {
        width: 60vw;
    }

    .nav-link {
        font-size: larger;
    }

    .tab-content .list-group-item {
        background-color: #f2eddd;
        color: rgb(0, 0, 0);
        border: rgb(0, 0, 0);
        font-size: large;
    }

    .tab-content .list-group-item:hover {
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
    }

    .tab-pane .list-group-item{
        margin-bottom: 15px !important;
    }
}


@media (min-width:679px) and (max-width:1200px) {

    .tab-content .list-group-item {
        background-color: #f2eddd;
        color: rgb(0, 0, 0);
        border: rgb(0, 0, 0);
        font-size: medium;
    }

    .nav-link {
        font-size: large;
    }

    .tab-content {
        width: 65vw;
    }

    .tab-content .list-group-item:hover {
        background-color: #f2eddd;
        color: rgb(0, 0, 0);
    }
    
    .tab-pane .list-group-item{
        margin-bottom: 13px !important;
    }
}

@media (max-width:678px) {

    .tab-content{
        width: 80vw;
    }

    .tab-pane .list-group-item{
        margin-bottom: 10px !important;
    }
}
