:root {
    --abu: #ddd;
    --oren: #E5A90D;
    --birutua: #365072;
    --roboto: "Roboto", sans-serif;
    --poppins: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--abu);
    font-family: var(--roboto);
    font-size: .8rem;
}

.teks-berjalan {
    width: 100%;
    height: 30px;
    position: fixed;
    z-index: 9999;
    padding: 2px 0;
    background-color: rgba(0, 0, 0, .7);
    font-size: large;
    font-weight: bold;
    color: #dddd;
}

/* NAVBAR */
nav {
    margin-top: 2rem;
    border-radius: 20px;
    background-color: var(--birutua);
}

img.logo-kemenag {
    max-height: 1.5rem;
    margin-right: .5rem;
}

span.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--oren) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
}

/* HERO */
p.judul {
    margin-top: 7px;
    font-family: var(--poppins);
    font-size: 1rem;
    font-weight: bold;
}

/* LAYANAN INFORMASI */
div.layanan-informasi {
    background-color: #f4f0f0;
}

h4.sub-judul {
    color: var(--birutua);
}

.layanan {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

a.sub-layanan {
    height: 10rem;
    width: 10rem;
    padding: 10px;
    color: black;
    background-color: #F8F9FA;
    text-decoration: none;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 7px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition-duration: .3s;
}

a.sub-layanan:hover {
    background-color: var(--oren);
    color: white;
    transform: scale(1.1);
    transition-duration: .3s;
}

div.lingkaran-logo-layanan {
    background-color: var(--birutua);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
    width: 7rem;
    border: solid 2px #ddd;
    border-radius: 50%;
}

span.logo-layanan {
    font-size: 4rem;
}

.isi-informasi {
    font-family: var(--poppins);
}

li>a {
    text-decoration: none;
}

a:hover {
    color: var(--oren);
}

/* PELAYANAN */
.kotak-persyaratan {
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid #f4f4f4;
    border-radius: 7px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
}

/* FOOTER */
footer {
    background-color: var(--birutua);
}

.text-footer {
    color: white;
}