/* body */
body {
    background-image: url(image/suns.jpg);
    overflow-x:hidden;

}

/* Navbar */
.navbar {
    position: relative;
    z-index: 1;
}
.navbar-brand {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 32px;
}

/* Jumbotron */
.jumbotron{
    background-image: url(image/suns.jpg);
    background-size:cover;
    height: 800 px;
    text-align: center;
    position: relative;
    font-family: 'Caveat', cursive;
}

.jumbotron .container {
    z-index: 1;
    position: relative;
}

.jumbotron::after {
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1)); 
    position:absolute;
    bottom: 0;

}

.jumbotron .display-4 {
    color: white;
    margin-bottom: 50px;
    margin-top: 50px;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
    font-size: 42px;
}

.jumbotron .display-4 span{
    font-weight: 800;
}

/* Container */
.container2{
    margin-top: 100px;
}

.container3{
    margin-top: 100px;
}


/* Info Panel */
.info-panel {
    box-shadow: 0px 2px 15px  rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: -30px;
    background-color: white;
    padding: 30px;
    margin-top : -70px;
}

.info-panel img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.info-panel h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 5px;
}

.info-panel p{
    font-size: 14px;
    color: rgb(129, 129, 129);
    margin-top: -5px;
    font-weight: 200;
}

/* Footer */
.footer{
    margin-top: 140px;
}

.footer p{
    color: rgb(58, 58, 58);
    font-size: 12px;
}

/* Utility */
.tombol {
    text-transform: uppercase;
    border-radius: 40px;
    font-family: 'Lexend Deca', sans-serif !important;
}

.tombol3 {
    text-transform: none;
    font-size: 12px;
    margin-top: -10px;
    padding: none;
}

/* DESKTOP VERSION */
@media (min-width: 992px) {
    .navbar-brand, .nav-link{
        color: white !important;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8)
    }

    .nav-link{
        text-transform: uppercase;
        margin-right: 30px;
    }

    .nav-link:hover::after {
        content: '';
        display: block;
        border-bottom: 3px solid blue;
        width: 50%;
        margin: auto;
        padding-bottom: 5px;
        margin-bottom: -8px;
    }   

    /* Jumbotron */
    .jumbotron{
        margin-top: -100px;
        height: 500px;
    }
    .jumbotron .display-4{
        margin-top: 100px;
    }

    .container2 {
        margin-top: 100px;
    }
    
    .container3{
        margin-top: 100px;
    }
    
    .info-panel{
        margin-top: -120px;
        margin-bottom: 80px;
    }
}