body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: black;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height:100%;
}

.menu-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 10;
 }

.honcho-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
}

.honcho {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.menu-icon {
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 10px;
    background-color: #333;
    width: auto;
    padding: 5px 0;
    border-radius: 5px;
    z-index: 10;
}

.menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.menu a:hover {
    background-color: #575757;
}

.about-content {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    overflow-y: auto;
    flex: 1;
    z-index: 1;
}
.about-content li {
    list-style-type: none;
    color: white;
}

.about-content a {
    color: lightblue;
    text-decoration: none;
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-content a:hover {
    text-decoration: underline;
}

.commando-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    padding: 20px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
}

.description {
    margin-bottom: 20px;
}

.content-section {
    display: grid;
    gap: 20px;
}

.commando-container a {
    color: lightblue;
    text-decoration: none;
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.commando-container a:hover {
    text-decoration: underline;
}

.text-img, .img-text {
    display: contents;
}

.text-img {
    display: grid;
    grid-template-columns: 90% 10%;
    gap: 20px;
    padding-right: 20px;
}

.text-img p {
    grid-column: 1;
}

.text-img img {
    grid-column: 2;
    max-width: 100%;
    height: auto;
}

.img-text {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
    padding-left: 10%;
}

.img-text img {
    grid-column: 1;
    max-width: 100%;
    height: auto;
}

.img-text p {
    grid-column: 2;
}

.image-row {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.centered-image {
    width: 70%;
    padding: 0 15%;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    width: 80%;
    margin: 20px auto;
}

.image-column {
    text-align: center;
}

.text-column {
    text-align: left;
    padding: 0 10px;
}

.side-image {
    width: 100%;
}

.image-caption {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}