:root{
    --bg: #191d21;
    --bgSoft: #1f3050;
    --text: #dee4eb;
    --textSoft: #cbd2d9;
}

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

body{
    background: var(--bg);
    color: var(--text);
    font-family: "Roboto", sans-serif;
}

a{
    color: inherit;
    text-decoration: none;
}

.container{
    max-width: 1366px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* NAVBAR START */

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo{
    padding-top: 15px;
    padding-bottom: 10px;
}

.links{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.searchButton{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bgSoft);
    color: var(--textSoft);
    padding: 5px;
    border-radius: 10px;
}

/* NAVBAR END */

/* FOOTER START */

.footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    font-size: 14px;
}

.social{
    display: flex;
    gap: 10px;
}

/* FOOTER END */

/* LIST START */

.listItem{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.listItemImage{
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.listItemTexts{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listItemDetail{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.listItemAvatar{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.listItemCategories{
    display: flex;
    gap: 10px;
}

.listItemCategory{
    padding: 5px;
    border-radius: 5px;
    background-color: var(--bgSoft);
    color: var(--textSoft);
    font-size: 14px;
}

/* LIST END */

/* SINGLE START */

.singleHead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.singleHeadText{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.singleHeadTitle{
    font-size: 48px;
}

.singleHeadDesc{
    font-size: 20px;
    font-weight: 300;
}

.singleHeadDetail{
    display: flex;
    align-items: center;
    gap: 20px;
}

.singleAvatar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.singleCategory{
    padding: 5px;
    border-radius: 5px;
    background-color: var(--bgSoft);
    color: var(--textSoft);
    font-size: 14px;
}

.singleHeadImg{
    flex: 1;
    max-width: 100%;
}

.singleBottom{
    margin-top: 50px;
    font-size: 20px;
    line-height: 32px;
}

.singleContent p,
.singleContent h1,
.singleContent h2,
.singleContent h3{
    margin: 20px 0px;
}

.singleContent img{
    width: 100%;
    object-fit: cover;
}

.singleContent pre{
    width: 100%;
    overflow-x: scroll;
    padding: 20px;
}

/* SINGLE END */

@media (max-width: 1536px){
    .container{
        max-width: 1366px;
    }
}
@media (max-width: 1366px){
    .container{
        max-width: 1280px;
    }
}@media (max-width: 1280px){
    .container{
        max-width: 1024px;
    }
}@media (max-width: 1024px){
    .container{
        max-width: 768px;
        padding-left: 10px;
        padding-right: 10px;
    }
}@media (max-width: 768px){
    .container{
        max-width: 640px;
    }
    .links{
        font-size: 14px;
    }
    .logo{
        max-height: 80px;
        padding-top: 5px;
    }
}
@media (max-width: 640px){
    .container{
        max-width: 475px;
    }
}