body, header, nav, main, footer, img {
    margin: 0;
    padding: 0;
    border: 0;
}
.p1 {
    font-family: "Trirong", serif;
}
h1 {
    color: black;
    margin-left: -20px;
    font-size: 50px;
    text-align: center;
}
h2 {
    color: white;
    font-size: 50px;
    text-align: center;
    text-shadow: 2px 2px 5px #292933;
}
nav {
    background: white;
    margin-left: 700px;
    font-size: 30px;
    text-align: center;
}
nav a {
    color: black; 
    text-decoration: none; 
}
nav a:hover {
    color: #251236;
    text-decoration: underline;
}
nav a:active {
    color: #4CAF50; 
    transform: scale(0.95);
}
main {
        font-size: 50px;
        text-align: center;
}
footer {
        font-size: 10px;
        text-align: center;
}
#footer {
    font-size: 10px;
    text-align: center;
    height: 50px;
    margin: 0;
    padding: 0;
}
img {
        width: 50%;
        height: auto;
        text-shadow: 5px 10px 8px #ccc;
}
body {
    background-image: url("stock.png");
    background-size: cover;
    min-height: 100vh;
}
a {
    display: inline-block;
    padding: 5px 10px;
}
        html {
            height: auto;
            margin: auto;
            display: flex;
            flex-direction: column;
            background-color: #251236; 
            color: white;
        }
        main {
            flex: 1;
            position: relative;
            text-align: center;
            margin: center;
        }
        .header-container {
            display: flex;
            align-items: center;
            gap: 10px; 
            background: white;
            margin-top: 50px;
        }
        .premIMG {
            width: 40px; 
            height: auto;
            margin: auto;
            max-width: 40px;
            scale: 300%;
        }
        .row {
            display: flex;
        }
        .column {
            flex: 50%;
            padding: 10px;
        }
        .article1 {
            align-items: center;
            width: 100%;
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
        }
        .article2 {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1100px;
            margin: 50px auto;
            padding: 20px;
        }
        article p {
            flex: 1;
            font-size: 1.2rem;
            line-height: 1.5;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        article img {
            max-width: 200px;
            height: auto;
            scale: 300%;
            margin-top: 100px;
            margin-bottom: 100px;
        }
        .aside1 {
            margin: 75px;
        }
        .aside2 {
            margin: auto;
        }
        li {
            font-size: 30px;
        }
        #footer {
            font-size: 10px;
            text-align: center;
            height: 50px;
            margin: 0;
            padding: 0;
        }
        figure {
            text-align: center;
            width: 300px; /* Increased width */
            margin: 0;
        }
        figure img {
            width: 100%; 
            height: 200px; /* Increased height */
            object-fit: cover; /* Ensures images maintain aspect ratio while filling the space */
            display: block;
            border-radius: 10px; /* Optional: Adds rounded corners for a modern look */
        }  
        figcaption {
            margin-top: 10px;
            font-size: 16px; /* Slightly larger text */
            font-weight: bold;
            color: white;
        }
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 15px;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown-content a:hover {
            background-color: #ddd;
        }

.tablet {
    display: block;
}
.mobile {
    display: block;
}
/* Tablets 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    nav {
        font-size: 25px; 
    }

    main {
        font-size: 14px; 
    }

    footer {
        font-size: 12px; 
    }
}
/* Smartphone 320px to 480px */
@media screen and (min-width: 320px) and (max-width: 480px) {
    nav {
        font-size: 20px; 
    }

    main {
        font-size: 13px; 
    }

    footer {
        font-size: 12px; 
    }
    body {
        background-color: black;
    }
}