@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');*{    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@-ms-viewport{
    width: device-width;
}

/* Applying fonts to body and headings */
body {
    font-family: 'Open Sans', sans-serif; /* Default font */
}

.home{
    background-color: #f6f6f6;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* Colors and Variables */
:root {
    --color-theme: #fff;
    --light-color-theme: #fff;
    --light-black: #fff;
    --black: #000;
    --white: #fff;
    --grey: #aaa;
    --first-color: #6923D0;
    --first-color-light: #F4F0FA;
    --title-color: #19181B;
    --text-color: #58555E;
    --text-color-light: #A5A1AA;
    --body-color: #F9F6FD;
    --container-color: #fff;
    --header-height: 3.5rem;
    --nav-width: 250px;
    --normal-font-size: .938rem;
    --small-font-size: .75rem;
    --smaller-font-size: .75rem;
    --font-medium: 500;
    --font-semi-bold: 600;
    --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

a {
    text-decoration: none;
}

/* Navbar */
#navbar {
    transition: background-color 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar-toggler {
    border: none;
}

/* Media Queries */

/* Navbar - Small Screens */
@media screen and (max-width: 992px) {
    .navbar-collapse {
        justify-content: center;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 20px;
    }

    .contact-btn {
        text-align: center;
        padding-top: 20px;
    }
}

.collection-cover {
    background-color: #677381;
    font-weight: 500;
    width: 100%;
    height: 200px;
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Ensure text alignment (optional) */
    margin-top: 80px;
}

.collection-cover .p {
    font-size: 40px;
    color: #fff;
}

.collection-cover .p1 {
    margin-top: -10px;
    font-size: 14px;
    color: #fff;
    margin-left: 50px;
    margin-right: 50px;
}

/* Seller Section */
.seller {
    margin-top: 40px;
}

/* Article Header Styling */
.articleh1 {
    font-size: 25px;
    font-weight: 500;
    margin: 15px;
    margin-left: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #222;
}

.articleh1 i {
    font-size: 20px;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #222;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Article Text Styling */
.articlep {
    color: #000;
    text-decoration: none;
}

.articlep a:link,
.articlep a:active,
.articlep a:visited,
.articlep a:hover {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

.cover-image {
    width: 90px;
    height: 135px;
    margin-left: 25px;
}

.contact-text {
    display: grid;
    grid-template-rows: 1fr auto;    
    margin: 20px;
    height: auto;
    width: 100%;
    border-radius: 5px;
    align-items: center;
    box-sizing: border-box;
}

.contact-text .h1 {
    font-size: 25px;
    text-align: justify;
    margin-left: 90px;
    margin-right: 90px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #3b3b3b;
}

.contact-text .p1 {
    font-size: 18px;
    text-align: justify;
    font-weight: 500;
    margin-left: 110px;
    margin-right: 110px;
    margin-top: 5px;
    color: #3b3b3b;
}

.contact-text .p {
    font-size: 16px;
    text-align: justify;
    margin-left: 90px;
    margin-right: 90px;
    margin-top: 5px;
    color: #3b3b3b;
}

.contact-text .p2 {
    font-size: 16px;
    text-align: justify;
    margin-left: 110px;
    margin-right: 110px;
    margin-top: 5px;
    color: #3b3b3b;
}

@media screen and (max-width: 992px) {
    .contact-text .p {
        font-size: 16px;
        text-align: justify;
        margin-left: 0px;
        margin-right: 40px;
        margin-top: 5px;
        color: #3b3b3b;
    }
    .contact-text .p1 {
        font-size: 18px;
        text-align: justify;
        font-weight: 500;
        margin-left: 0px;
        margin-right: 40px;
        margin-top: 5px;
        color: #3b3b3b;
    }
    .articleh1 {
        font-size: 28px;
        font-weight: 500;
        margin: 15px;
        margin-left: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        color: #222;
    }
    
}