/* debug {
    border: 1px solid red;
} */

/* Header Section */
#header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Nav Bar */
nav {
    width: 100%;
}

nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

nav li {
    list-style: none;
}

/* Main Tab Navigation */
.main-tab {
    display: none;
}

.main-tab.active {
    display: block;
}

/* Overview Tab */
#overview {
    width: 100%;
}

#overview-top-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid red;
}

#character-overview {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#character-overview img {
    height: 5rem;
    width: auto;
}

#character-overview-copy {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-around;
    border: 1px solid red;
}

#environment-overview {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#environment-overview img {
    height: 4rem;
    width: auto;
}

#environment-overview-copy {
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: space-around;
    border: 1px solid red;
}