:root
{
    --primary-color: rgb(215, 146, 60);
    --description-bg-color: rgb(215, 146, 60);
}


#intro_description
{
    width: min(90vw, 1200px);
}


hr
{
    border-top: 1px solid lightgray;
    height: 1px;
    color: transparent;
}

header {
    margin: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100vw;
    text-align: center;
    background-color: transparent;
    transition: background-color 0.4s ease;
}

header.scrolled
{
    background-color: var(--primary-color);
}

#logo
{
    height: 90px;
    margin: 10px;
    transition: background-color 0.5s ease, height 0.4s ease;
}

.scrolled #logo
{
    height: 60px;
    margin: 10px;
}


.load_more
{
    display: block;
    text-align: center;
    margin: 160px 0 0 0;
}