:root {
	--bg-col: #e6e6e6; 
    --text: #000000;
    --hi-col: #006D77;
    --but-ho: #006D7722;
}

body {
    margin: auto 0;
    color: var(--text);
    background-color: var(--bg-col);
}

.bar {
    width: 60vw;
    height: fit-content;
    color: var(--text);
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.bar .logo {
    font-family: "Cal Sans";
    font-size: 24px;
    padding: 10px;
    margin: 0;
}

.bar .tabs {
    margin: 0;
}

.bar .tabs button{
    font-family: "Cal Sans";
    font-size: 18px;
    padding: 10px;
    margin-inline: 2px;
    border: none;
}

button {
    background-color: var(--bg-col);
    color: var(--text);
}

button:hover {
    background-color: var(--but-ho);
}

.part {
    width: 60vw;
    margin: auto;
    font-family: "Poppins";
}

.hello {
    padding-top: 200px;
    padding-bottom: 100px;
}

.part h1 {
    width: 100%;
    font-size: 32px;
    display: flex;
    justify-content: space-between;
}

.part h1 p{
    font-size: 16px;
    color: var(--hi-col);
    justify-self: baseline;
    font-weight: lighter;
}

.part h2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.part h2 p{
    font-size: 16px;
    color: var(--hi-col);
    justify-self: baseline;
    font-weight: lighter;
}

.hello h1
{
    width: 250px;
    justify-content: space-around;
}

.highlight-text {
    color: var(--hi-col);
}

.post {
    display: flex;
    flex-direction: row;
    border: 1px solid var(--text);
    margin-bottom: 25px;
}

.post .info {
    padding: 15px;
}

.post img {
    max-width: 400px;
    max-height: 200px;
    min-width: 400px;
    min-height: 200px;
    object-fit: cover;
}

.post .info
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post .info .text .heading{
    font-size: 22px;
    font-weight: bold;
}

.post .info .text .description
{
    font-size: 18px;
}

.post .info button {
    width: 100px;
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border: none;       
}

.content {
    padding-top: 200px;
    padding-bottom: 100px;
}

.content a {
    color: var(--hi-col);
    font-weight: bold;
}

.content img {
    width: 60vw;
    aspect-ratio: initial;
}

.list {
    padding-top: 200px;
    padding-bottom: 100px;
}













#themer {
    position: fixed;
    border-radius: 50%;
    bottom: 10;
    right: 10;
    border: 1px solid var(--text);
    padding: 10px;
}

#themer svg {
    height: 24px;
    width: 24px;
    fill: var(--text);
}

.footer {
    padding-top: 250px;
    font-family: "Poppins";
    font-weight: light;
    font-size: 12px;

    width: 60vw;
    height: fit-content;
    color: var(--text);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}






























@media only screen and (max-width: 600px)
{
    .bar {
        width: 95vw;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    .bar .logo {
        font-size: 24px;
        margin: auto;
        padding: 10px;
    }

    .bar .tabs {
        margin: auto;
    }

    .bar .tabs button{
        font-size: 18px;
        padding: 5px;
        margin-inline: 10px;
    }

    .part {
        width: 90vw;
    }

    .hello {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    .part h1 {
        font-size: 18px;
    }

    .part h1 p{
        font-size: 12px;
    }

    .part h2 {
        font-size: 16px;
    }

    .part h2 p{
        font-size: 12px;
    }

    .part p {
        font-size: 12px;
    }

    .hello h1
    {
        font-size: 32px;
        width: max-content;
    }

    .hello p
    {
        font-size: 18px;
    }

    .post {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--text);
        margin-bottom: 25px;
        
        overflow: hidden;
    }

    .post .info {
        padding: 15px;
    }

    .post img {
        width: 90v;
        aspect-ratio: initial;
        object-fit: cover;
    }

    .post .info
    {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .post .info .text .heading{
        font-size: 22px;
        font-weight: bold;
    }

    .post .info .text .description
    {
        font-size: 18px;
    }

    .post .info button {
        width: 100px;
        font-weight: bold;
        padding: 10px;
        text-align: left;
        border: none;       
    }

    .content {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .content a {
        color: var(--hi-col);
        font-weight: bold;
    }

    .content img {
        width: 90vw;
        aspect-ratio: initial;
    }

    .list {
        padding-top: 200px;
        padding-bottom: 100px;
    }
}