@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: delius;
}

body{
    background-color: #ddd;
}

.navbar{
    width: 100%;
    height: 55px;
    background-color: #3f88c5;
    position: fixed;
    display: flex;
    overflow: hidden;
    z-index: 3;
    transition: height 0.5s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 8px;
}

.home{
    position: absolute;
    left: 0;
    font-weight: bold;
    color: white;
    padding: 18px;
}
.home:hover{
    background-color: white;
    color: black;
}

.main{
    width: 75%;
    top: 87px;
    position: relative;
    left: 12.5%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 8px;
    min-height: 411px;
    padding-bottom: 50px;
}

.judul_subtema{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b648c;
    font-size: 2em;
    font-weight: bold;
    color: white;
}

.judul_informasi{
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin: 8vh 0 4vh 0;
}

.batas_informasi{
    width: 80%;
    margin: 6vh auto 3vh auto;
}

.paragraf_informasi{
    text-indent: 6%;
    text-align: justify;
    width: 80%;
    margin: auto;
    line-height: 1.7em;
}

.dapus_informasi{
    text-indent: -6%;
    text-align: justify;
    width: 74%;
    margin: auto;
    line-height: 1.7em;
}

.tabel_informasi{
    margin: auto;
}

.tabel_informasi td{
    padding: 5px;
}

.footer{
    position: relative;
    width: 100%;
    top: 130px;
    background-color: #3f88c5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    color: white;
    font-size: 1em;
    font-weight: bold;
}

.isi{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.isi h2{
    margin-top: 4vh;
}

.isi img{
    border: 2px solid black;
    margin: 4vh 0 2vh;
    width:80%;
}


#peta_konsep{
    width: 80%;
}

.petunjuk_guru{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media screen and (max-width:650px){
    
    body{
        font-size: 0.9em;
    }

    .tabel_informasi{
        font-size: 0.7em;
    }

    .judul_subtema{
        font-size: 1.3em;
        height: 60px;
    }
    .dapus_informasi{
        font-size: 0.7em;
    }

    #peta_konsep{
        width: 200%;
    }

    .isi img{
        width: 95%;
    }

    .isi ol{
        font-size: 0.8em;
        width: 85%;
    }

    .main{
        width: 90%;
        left: 5%;
        top: 80px;
    }
    .footer{
        left: 5%;
        width: 90%;
        top: 110px;
        font-size: 0.9em;
    }
    
}


