html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    height: 100vh;
    /* set viewport constraint */
    min-height: 100%;
    /* enforce height */
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
    background: #000;
}

.carousel-caption {
    padding-bottom: 80px;
}

h2 {
    font-size: 40px;
}

p {
    padding: 10px
}


/* Background images are set within the HTML using inline CSS, not here */

.fill {
    background-image: url('main.jpg');
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    -o-background-size: 100% 100%;
    opacity: 0.6;
}


/**
 * Button
 */

.btn-transparent {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-transparent:hover {
    background-color: #fff;
}

.btn-rounded {
    border-radius: 70px;
}

.btn-large {
    padding: 11px 45px;
    font-size: 18px;
}


/**
 * Change animation duration
 */

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

nav img,
.navbar img {
    max-height: 40px;
    max-width: 40px;
    background-color: seashell;
}
        
.menuImg {
    display: block;
    width: 100%;
    height: 100vh;
}

.content{
    margin-top: 65px;
}