*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

body {
    font-family: "Poppins", sans-serif;
    overflow: auto;
    background: rgb(255, 220, 150);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 7%;
    width: 100%;
    background-color: #c5922d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
}

.logo img {
    width: 8rem;
}

nav{
    background-color: #c5922d;
}

nav a {
    color: #fff;
    font-size: 1.2rem;
    padding: 0.5rem;
}

nav a:hover {
    color: rgb(77, 171, 236);
}

.content {
    padding: 7rem 10% 2rem;
    text-align: justify;
}

.content h3{
    padding-top: 2rem;
    font-size :xx-large;
    text-align:left;
}

.konteks{
    display: flex;
    justify-content: space-between;
}

.gambar {
    width: 20%;
}

footer {
    background-color: rgb(252, 201, 100);
    color: white;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
    margin-top: auto;
    position: relative;
}

@media (max-width: 768px) {
    html{
        font-size: 90%;
    }
    .konteks img{
        width: 15%;
    }
    .konteks img{
        width: 50%;
    }
}

@media (max-width: 480px) {
    html{
        font-size: 80%;
    }
    .konteks img{
        width: 40%;
    }
}
