body {
    /* Location of the image */
    background-image: url(../kepek/background.jpg);

    /* Image is centered vertically and horizontally at all times */
    background-position: center center;

    /* Image doesn't repeat */
    background-repeat: no-repeat;

    /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
    background-attachment: fixed;

    /* This is what makes the background image rescale based on its container's size */
    background-size: cover;

    /* Pick a solid background color that will be displayed while the background image is loading */
    background-color: #464646;

    /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
    body {
        /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
        background-image: url(images/background-photo-mobile-devices.jpg);
    }
}

.header {
    background-color: rgba(255, 255, 255, 1);
}


.content {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.8);
}

.content-footer {
    padding: 24px;
    background-color: rgba(255, 255, 255, 1);
}

/*.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
}*/

.fs-4 {
    font-size: 14px !important;
}

.logored {
    color: #e80500;
    font-size: 14px;
}

.nav-item a {
    color: black;
}

.nav-item .email {
    color: red;
}

#listmenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#listmenu ul li {
    background-color: white;
    margin: 6px;
    padding: 6px;
}

#listmenu ul li a {
    color: black;
    text-decoration: none;
}

#listmenu ul li a:hover {
    color: #0d6efd;
}

.content a,
.footer a {
    color: #CD2430;
    text-decoration: none;
}

.footer ul li a {
    font-weight: bold;
    color: #CD2430;
    text-decoration: none;
}

#footerRed {
    color: white;
    background-color: #CD2430;
    padding-top: 12px;
    padding-bottom: 12px;
}

.dropdown-menu li a {
    padding: 6px;
}
