* {

    margin: 0px;
    border: 0;

}

body {
    background: darkgrey;
}

.jumbotron {
    background-color: rgb(2, 124, 2);

}

.display-4 {
    font-family: 'Anton', sans-serif;
    color: white;

}



.lead {
    color: white;
}

h2 {
    margin-top: 30px;
}

h3 {
    padding: 10px;
}

.container {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    height: 70px
}

.search-bar {
    display: flex;
    justify-content: space-between;
    margin: 10px;
    margin-top: 100px;
}

.checkbox {
    margin: 20px;
    font-size: 30px;
    font-weight: 2px;
}

.sidenav {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.title {
    font-family: 'Anton', sans-serif;
    color: black
}

label {
    font-family: 'Lato', sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
}


.main {
    margin-left: 300px;
    /* Same as the width of the sidenav */
    font-size: 28px;
    /* Increased text to enable scrolling */
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
}

@media(max-width: 650px)
{
    .sidenav{
        display: none;
        width: 0px;
    }

    .main{
        margin-left: 0px;
    }

    .nav-link{
        display: none;
    }
}

.test-button {
    float: right;
}

.card {
    height: 100%;

}

.form-check {
    margin: 0px 20px;
    margin-top: 100px;
}

a {
    color: white;
    font-family: 'Lato', sans-serif;
    margin-top: 20px;
}

.homeBtn {
    font-family: 'Anton', sans-serif;
    color: black;
    text-decoration: none;
}

section:hover {
    background-color: lightblue;
    cursor: pointer;
    box-shadow: 5px 5px 5px black;
    opacity: 95%;
}

.nav-link:hover {
    color: lightblue;

}