#root-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

#stem-wrapper {
    width: 850px;
    display: flex;
    gap: 2em;
}

.main-box {
    position: relative;
    border: 1px dotted black;
    padding: 0.25em 1em;
    background-color: #fefefa;

    h3 {
        margin: 0;
        padding-left: 0.5em;
        margin-left: -2.5em;
        margin-right: -1em;
        background-color: #f5eee4;
        color: olivedrab;
        border: 1px solid #e8d0b0;
		font-size: 13.5px;
    }

    p {
        margin: 15px 5px;
    }

    ul {
        list-style: none;
        padding-left: 0;
        margin: 10px 5px;
    }

    li {
        margin-bottom: 0.2em;
    }
}

.main-box:last-child {
    margin-bottom: 70px;
}

header {
    display: flex;
    flex-direction: column;

    h3 {
        position: relative;
        margin-left: -2.5em;
        bottom: -35px;
        background-color: #f5eee4;
        color: olivedrab;
        border: 1px solid #e8d0b0;
        font-size: 13.5px;
    }
}

#header-img {
    height: 180px;
    object-fit: cover;
    margin-bottom: -10px;
    image-rendering: unset;
}

#header-title {
    width: max-content;
    margin: -45px 0px 0px 25px;
    padding-bottom: 25px;

    font-family: "Comico", "Menlo";
    font-size: 37px;
    color: #fefefa; 
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}


#main-wrapper {
    flex: 1 1 77.5%;
	display: flex;
    flex-direction: column;
    gap: 1em;
}

#side-wrapper {
    flex: 1 1 22.5%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: 10.5px;
}

.side-box {
	position: relative;
    border: 1px dotted black;
    padding: 0.25em 1em;
    background-color: #fefefa;

    h3 {
		margin: 0;
		margin-left: -1em;
		margin-right: -1em;
        background-color: #f5eee4;
        color: olivedrab;
        border: 1px solid #e8d0b0;
		font-size: 13.5px;
	}

    p {
        margin: 10px 5px;
    }

    ul {
        list-style: none;
        padding-left: 0;
        margin: 15px 5px;
    }

    li {
        margin-bottom: 15px;
    }

    li:last-child {
        margin-bottom: 0;
    }
}

