:root{
	--primary-color				: #000000;
	--secondary-color			: #F8F8F8;
	--text-color				: #777777;
	--bg-color					: #FFFFFF;
	--white-color				: #FFFFFF;
	--divider-color				: #0000001A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Ubuntu", sans-serif;
    --c50						: #fafde8;
    --c100						: #f1facd;
    --c200						: #e3f5a1;
    --c300						: #cfed69;
    --c400						: #b7df3c;
    --c500						: #99c51d;
    --c600						: #769d13;
    --c700						: #5a7813;
    --c800						: #495f15;
    --c900						: #3e5116;
    --c950						: #1f2c07;
    --s50						:#fff8ec;
    --s100						:#fff0d3;
    --s200						:#ffdca5;
    --s300						:#ffc26d;
    --s400						:#ff9d32;
    --s500						:#ff7f0a;
    --s600						:#ff6600;
    --s700						:#cc4902;
    --s800						:#a1390b;
    --s900						:#82310c;
    --s950						:#461604;
}

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

body,
html {
    font-family: sans-serif;
    text-align: center;
}

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

header {
    background-color: black;
    background-image: url("images/bamboo.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: initial;
    color: white;
    padding: 1rem;
    text-align: center;
}

footer {
    background-color: #121c14;
    color: white;
    padding: 1rem;
    text-align: center;
}

small {
    color: hsl(0, 0%, 40%);
}

.s500 {
    color: var(--c600);
    margin: 5px;
}
.c500 {
    color: var(--c500);
    margin: 5px;
}

.space>p {
    margin: 0.5em;
    text-align: left;
}

.space>p::before {
    content: " ⭐️ ";
}


.rotatehalf {
    transform: rotate(180deg);
}

.logo {
    height: 80px;
    margin-top: 0.5rem;
}


.mainColor {
    color: #ff6600;
}

.secondColor {
    color: #99c51d;
}

.bar {
    display: flex;
    width: 100%;
    margin: 2em auto;
}

.bar-content {
    color: inherit;
    display: flex;
    text-decoration: none;
    width: 100%;
}

.image-left .bar-image {
    order: 0;
}

.image-left .bar-text {
    order: 1;
}

.image-right .bar-image {
    order: 1;
}

.image-right .bar-text {
    order: 0;
}

.bar-image {
    height: 100%;
    overflow: hidden;
    width: 60%;
}

.bar-image img {
    display: block;
    aspect-ratio: 16/9;
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

.bar-text {
    background-image: url("images/bambooB.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 500%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    width: 40%;
}

.bar-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bar-text p {
    font-size: 1.2rem;
}

.credits {
    color: #99c51d;
    display: grid;
    font-size: 0.9em;
    grid-template-rows: 1fr 1fr;
    margin-top: 1em;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .bar-content {
        flex-direction: column;
    }

    .bar-image,
    .bar-text {
        height: 50%;
        width: 100%;
    }

    .bar-text {
        padding: 1rem;
        text-align: center;
    }
}