@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* primary color #261fb3 */

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    margin: 20px 0;
}


a,
p,
span,
small,
ul li,
ul , strong, em, u{
    font-family: "Inter", sans-serif;
    color: #222;
}

a {
    text-decoration: none;
    color: #222;
}

p{
    margin-bottom: 8px;
}

::-webkit-scrollbar {
    display: none;
}


.article-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.articleContainer{
    width: 100%;
    max-width: 1400px;
    border: 1px solid #11111115;
    border-radius: 15px;
    box-shadow: 5px 5px 60px #11111115;
    padding: 15px 20px;
}

.articleContainer img{
    width: 550px;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.articleContainer p{
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
}


.articleContainer ul li{
    list-style: circle;
    margin-left: 15px;
}

.articleContainer ul{
    margin-top: 5px;
    margin-bottom: 5px;
}

.articleSmall-Image{
    width: 250px !important;
    height: auto;
    object-fit: cover;
    display: inline;
    float: left;
    margin-top: 20px;
}

@media only screen and (max-width:768px) {

    body{
        padding: 10px;
    }

    .article-container{
        padding: 0;
        width: 100%;
        height: auto;
    }

    .articleContainer{
        padding: 0;
        overflow: hidden;
        flex-direction: column;
    }

    .articleContainer img{
        width: 100%;
        float: none;
        border-radius: 12px;
    }
    
}