*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    background-color: #2f2c2c;
}

.container{
    width: 92%;
    margin: auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    font-family: "Poppins";
    background-color: white;
}

    #header-img{
        height: 50vh;
        background-image: url(../header.PNG);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    #nav{
        height: 20vh;
        background-color: white;
    }
        #nav ul{
            width: 60vw;
            margin: auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

            #nav li{
                list-style: none;
            }

                #nav li a{
                    text-decoration: none;
                    color: #1e1a1aa4;
                    font-size: 1.5rem;
                }

                #profile-img{
                    padding: 1rem;
                    background-color:#8cb670;
                    border-radius: 50%;
                    border: 6px solid white;
                    width: 210px;
                    height: 210px;
                    margin-top: -100px;
                    margin-right: -80px;
                    margin-left: -80px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-image: url(../../../img/Confused_Logo.png);
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                }

            #active{
                font-weight: bold;
                font-size: 1.2rem;
            }

    /* Article Sec */
    #article-container{
        padding: 1rem 0;
        background-color: white;
    }

        .article-sec{
            background-color: white;
        }

            .article-sec h1{
                text-align: center;
                font-size: 1rem;
                margin-bottom: 4rem;
                color: #1e1a1aa4;
            }

            .content-area{
                display: flex;
                margin-bottom: 4rem;
            }

                .date{
                    flex: 1;
                    display: flex;
                    justify-content: flex-end;
                    padding-right: 2rem;
                }

                    .date div{
                        padding: 3rem;
                        background-color: #8cb6701a;
                        border-radius: 50%;
                        width: 40px;
                        height: 40px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 1.5rem;
                        color: #8cb670;
                        border: 2px solid #8cb67081;
                    }

                .content{
                    flex: 4;
                }

                    .stats{
                        display: flex;
                    }

                        .stats div{
                            margin-right: 2rem;
                            margin-bottom: 1rem;
                            display: flex;
                        }

                            .stats div img{
                                width: 20px;
                                margin-right: 0.5rem;
                            }

                            .stats div h3{
                                font-size: 0.8rem;
                                color: #8cb670;
                            }

                    .article{
                        padding-right: 10rem;
                    }

                        .article h2{
                            margin-bottom: 0.8rem;
                        }

                        .article p{
                            line-height: 1.4;
                            margin-bottom: 1.5rem;
                        }

                        .article a{
                            text-decoration: none;
                            font-size: 0.9rem;
                            color: #8cb670;
                            font-weight: bold;
                        }

/* Media Queries*/
@media only screen and (max-width: 1024px) {

    .container{
        width: 90%;
        margin: auto;
    }

    #header-img{
        height: 20vh;
    }

    #nav{
        height: 100%;
    }

    #nav ul{
        width: 100%;
    }

    #nav li a{
        font-size: 1rem;
    }

    #profile-img{
        border: 2px solid white;
        width: 150px;
        height: 150px;
        margin-top: -80px;
    }

    .article-sec h1{
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }

    .date div{
        padding: 2.5rem;
        font-size: 1rem;
    }

    .stats div{
        margin-right: 0.5rem;
        margin-bottom: 0.8rem;
    }

    .stats div img{
        width: 12px;
        height: 12px;
        margin-right: 0.5rem;
    }

    .stats div h3{
        font-size: 0.7rem;
        color: #8cb670;
    }

    .article{
        padding: 0 1.5rem 0 0;
    }

    .article h2{
        font-size: 1.1rem;
    }

    .article p{
        font-size: 0.8rem;
    }

    .article a{
        font-size: 0.65rem;
    }
}

@media only screen and (max-width: 700px) {

    .container{
        width: 100%;
        margin: 0;
    }

    #nav li a{
        font-size: 0.7rem;
    }

    #profile-img{
        border: 2px solid white;
        width: 100px;
        height: 100px;
        margin-top: -80px;
        margin-left: 0.1vw;
        margin-right: 0.1vw;
    }
    
    .date div{
        padding: 1.4rem;
        font-size: 0.7rem;
    }
}

@media only screen and (max-width: 320px) {
    #profile-img{
        margin-top: -50px;
        margin-left: 0;
        margin-right: 0;
    }

    #nav li a{
        font-size: 0.6rem;
    }

    .date{
        display: none;
    }

    .stats{
        padding-left: 1rem;
    }

    .article{
        padding: 0 1.5rem 0 1.5rem;
    }
}