/* ===== GENERAL ===== */
body {
    background-color: rgb(233, 241, 241);
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* ===== HEADINGS ===== */
h1 {
    text-align: center;
    color: black;
    font-size: 30px;
    font-style: italic;
    margin-top: 10px;
}

h2,
h4 {
    text-align: center;
}

/* ===== BUTTON ===== */
button {
    font-size: 16px;
    padding: 8px 15px;
    background-color: black;
    color: rgb(0, 0, 0);
    border-radius: 8px;
    transition: 0.3s;
    margin: 10px auto;
}

button:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transform: scale(1.1);
}

/* ===== SECTION STYLE ===== */
section {
    padding: 30px;
    text-align: center;
}

/* ===== TEXT ===== */
p {
    text-align: center;
    font-style: oblique;
}

/* ===== IMAGES ===== */
img {
    display: block;
    margin: 20px auto;
    max-width: 90%;
    height: auto;
}

/* ===== CUSTOM SECTIONS ===== */
#explore {
    background-color: rgb(40, 232, 206);
    padding: 20px;
}

/* ===== CONTACT SECTION ===== */
#h111,
#p2 {
    text-align: center;
}

/* ===== NAV BUTTON ===== */
.know {
    text-align: center;
    margin: 10px;
}

/* ===== REMOVE ALL ABSOLUTE POSITIONS (IMPORTANT FIX) ===== */
/* (we removed position:absolute everywhere to fix mobile layout) */

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    button {
        width: 80%;
    }

    img {
        max-width: 100%;
    }

    section {
        padding: 15px;
    }
}