/* Navbar */
.navbar {
    z-index: 1;
}
.navbar-brand {
    font-family: book antiqua;
    font-size: 25px;
    font-weight: bold;
}

/* Jumbotron */
.jumbotron {
    background-color: black;
    background-image: url(img/kalUnite.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 500px;
    text-align: justify;
    padding-top: 150px;
    position: relative;
}

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

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

.jumbotron .display-3, .jumbotron p {
    color: azure;
    font-weight: 100;
    font-size: 33px;
    text-shadow: 0 0 3px rgba(0, 0, 0, .7);
}

.jumbotron p {
    font-size: 16.5px;
}

.jumbotron .display-3 span {
    font-weight: 600;
}

.jumbotron button {
    margin-left: 36.5%;
    font-size: 25px;
    display: block;
    border-radius: 50px;
    border: 1px solid azure;
    padding: 10px 20px;
    text-shadow: 0 0 3px black;
}

/*  Container Isi */
.container-utama {
    background-color: black;
    margin-top: -33px;
    overflow: auto;
}

.container-utama h1 {
    color: azure;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10%;
    text-align: center;
}   

.formulir {
    width: 75%;
    margin: 25px auto;
    display: none;
}

label {
    color: azure;
}

.container-isi {
	width: 75%;
	margin: 25px auto;
	background-color: azure;
	border-radius: 7px;
    box-sizing: border-box;
    padding: 25px auto;
}

	.isi {
		font-size: 15px;
		padding: 16.5px;
	}

		.isi p {
			text-indent: 12.5px;
		}

	footer {
		color: azure;
		text-align: center;
		width: 100%;
		height: 50px;
		line-height: 50px;
		margin: 7px auto;
	}

/* Desktop v. only */
@media (min-width: 992px) {
    .navbar-brand {
        color: azure !important;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, .7);
    }

    .konten:hover::after {
        content: '';
        display: block;
        border-bottom: 3px solid magenta;
        width: 10px;
        margin: auto;
        padding-bottom: 3px;
        margin-bottom: -6px;
    }

    .jumbotron {
        margin-top: -75px;
        height: 600px;
    }

    .jumbotron .display-3, .jumbotron p {
        font-size: 66px;
    }

    .jumbotron p {
        font-size: 33px;
    }

    .jumbotron button {
        margin-left: 44%;
        font-size: 33px;
        display: block;
        border: 3px solid azure;
    }

    .container-utama h1 {
        font-size: 33px;
        font-weight: 700;
    }

    .isi {
		font-size: 25px;
		padding: 33px;
	}

		.isi p {
			text-indent: 25px;
		}

}