body {
    display: grid;
    place-items: center;
    height: 100%; /* Adjust this if you want it to be the full viewport height */
    margin: 20px;
    background-color: rgb(24, 26, 27);
    background: linear-gradient(109.6deg, rgb(24, 30, 37) 11.2%, rgb(11, 24, 40) 51.2%, rgb(0, 0, 0) 98.6%);
    color: rgb(200, 195, 188);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.main-container {
    display: flex;
    position: relative;
    align-items: flex-start;
    padding-right: 210px;
}

.vertical-menu {
    /* position: absolute;
    left: -200px; */
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    width: 170px; /* Set a width if desired */
    border: 1px solid rgb(200, 195, 188); /* Add a border around the menu */
    overflow: hidden; /* Ensure rounded corners look good */
    margin-right: 40px;
}

.vertical-menu li {
    margin-bottom: 0; /* Space between buttons */
    border-bottom: 1px solid rgb(200, 195, 188); /* Add a border around the menu */
}

.vertical-menu li:last-child {
    border-bottom: none; /* Remove the line for the last item */
}

.vertical-menu li a {
    display: block; /* Make the links fill the list item */
    background-color: rgb(24, 30, 37); /* Button background color */
    color: rgb(200, 195, 188); /* Button text color */
    padding: 10px; /* Button padding */
    text-align: left; /* Center the text */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.vertical-menu li a.active {
    background-color: rgb(81, 150, 197); /* Highlight color for active button */
    color: rgb(24, 30, 37)
}

.vertical-menu li a:not(.active):hover {
    background-color: rgb(45, 57, 70) /* Darker background on hover */
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns child elements to the left */
    max-width: 700px; /* Limits the maximum width of text containers */
    width: 100%;
    border: 1px solid rgb(200, 195, 188);
    /* border: 1px solid rgb(20,92,108); */
    padding: 10px;
    padding-top: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Aligns items to the left and right */
    align-items: center; /* Vertically center items within the container */
    margin-bottom: 16px;
}

h3, h4 {
    margin: 0; /* Remove default margin to prevent extra spacing */
}

.blurb {
    text-align: center;
}

a {
    text-decoration: none;
    color: rgb(81, 150, 197)
}

a:hover {
    text-decoration: underline;
    color: rgb(121, 175, 215)
}

p {
    width: 100%;
    text-align: left;
    font-size: medium;
    line-height: 1.4;
}

hr {
    border: 0;
    clear: both;
    display: block;
    width: 100%;               
    background-color: rgb(200, 195, 188);
    height: 1px;
}

h1, article {
    width: 100%; /* Limits the maximum width of text containers */
    margin: auto; /* Centers the element within the grid cell */
    text-align: center; /* Optional, for centering text within elements */
    padding: 10px; /* Adds padding for better readability */
    box-sizing: border-box; /* Ensures padding is included in the element's total width and height */
}

img {
    margin-top: 16px;
    object-fit: contain;
    width: 362px;
    height: 314px;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding-right: 0px; /* Remove the padding on smaller screens */
    }

    .vertical-menu {
        width: 100%;
        margin-bottom: 20px;
    }
}