html {
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body{
    background-color: lightgrey;
    margin: 0;
    padding: 0px;
}

.column {
    float: left;
    width: 50%;
}

.row:after{
    content: "";
    display: table;
    clear: both;
}

#account-drop-down {
    position: absolute;
    right: 10px;
    text-align: right;
    z-index: 3;
}
#account-drop-down-menu {
    position: relative;
    z-index: 3;
}

#add-bills {
    position: absolute;
    right: 140px;
}

#add-congressmen{
    position: absolute;
    right: 220px;
}

#logout-button {
    color: red;
}


#nay-vote {
    color: red
}

#yea-vote{
    color: green
}

#Failed{
    color: red
}

#Passed{
    color:green
}

#all_congressmen_senate{
    position: relative;
    top: 20px;
    left: 20px;
}

#all_congressmen_house{
    text-align: right;
    position: relative;
    top: 20px;
    right: 20px;
}



.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    vertical-align: middle;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.switch h5{
    position: relative;
    left: 60px;
    width: 400px;
}
/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: darkorange;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

    .slider.round:before {
        border-radius: 50%;
    }
marquee {
    position:relative;
    font-size: 20px;
    z-index: 0;
}

footer {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0px;
    background-color: lightgreen;
    color: black;
    width: 100%;
}

@media only screen and (max-width: 800px){
    .top-bar {
        display: block !important
    }
    .top-bar * {
        font-size: 12px;
    }
    a.navbar-link.is-arrowless {
        padding: 14px 4px
    }
    marquee {
        font-size: 16px;
    }

}