/* ========================================
   BASIC PAGE STYLING
   ======================================== */

body {
    margin: 0;
    padding: 0;

    font-family: "Comic Sans MS", cursive;
    background-color: lightblue;

    color: #111;
}


/* ========================================
   LEFT NAVIGATION
   ======================================== */

.icon-container {
    position: fixed;

    top: 20px;
    left: 20px;

    display: flex;
    flex-direction: column;

    gap: 15px;

    z-index: 1000;
}


/* Individual navigation button */

.icon-card {
    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: white;

    border-radius: 0;

    overflow: hidden;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Navigation hover effect */

.icon-card:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.3);
}


/* Images inside navigation buttons */

.icon-card img {
    width: 80%;
    height: 80%;

    object-fit: cover;

    border-radius: 5%;
}


/* ========================================
   MAIN CONTENT
   ======================================== */

.page-content {
    width: min(900px, calc(100% - 160px));

    margin: 0 auto;

    padding: 30px 0 80px;

    text-align: center;
}


/* ========================================
   DOGE TITLE
   ======================================== */

.doge-title {
    color: black;

    text-decoration: none;
}

.doge-title h1 {
    margin-bottom: 30px;

    font-size: 42px;
}

.doge-title:hover {
    color: #555;
}


/* ========================================
   DOGE IMAGE
   ======================================== */

.center-doge {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-bottom: 30px;
}

.center-doge img {
    max-width: 100%;
    height: auto;

    border-radius: 2px;

    box-shadow:
        10 5px 12px rgba(0, 0, 0, 0.2);
}


/* ========================================
   INTRO TEXT
   ======================================== */

.intro {
    margin: 20px auto 50px;

    font-size: 20px;
}

.intro p {
    margin: 0;
}


/* ========================================
   MAIN TEXT SECTIONS
   ======================================== */

.text-section {
    width: 100%;

    margin: 0 auto 50px;

    text-align: left;

    font-size: 17px;

    line-height: 1.6;
}


/* ========================================
   SECTION HEADINGS
   ======================================== */

.section-heading {
    margin: 50px 0 20px;

    text-align: left;
}

.section-heading h2 {
    margin: 0;

    font-size: 28px;
}


/* ========================================
   MOBILE STYLING
   ======================================== */

@media (max-width: 700px) {

    .icon-container {
        top: 10px;
        left: 10px;

        gap: 10px;
    }

    .icon-card {
        width: 45px;
        height: 45px;
    }

    .page-content {
        width: calc(100% - 90px);

        margin-left: 75px;
        margin-right: 15px;

        padding-top: 20px;
    }

    .doge-title h1 {
        font-size: 32px;
    }

    .center-doge img {
        width: 100%;
        max-width: 400px;
    }

    .text-section {
        font-size: 15px;
    }
	.list-one {
margin-left: 25px;
font-size: 15px;
}
}