

.container {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 1fr 200px; /* Adjust "50px" as needed */
    width:100vw;
    height:360vh;
    background-image: url("N5178LKBIE.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;

}
.menu {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 100vh;
    background-color: rgba(244, 244, 244, 0.5);
    padding: 5px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    a {
        color: #0C4793;
        font-weight: bolder;
        text-shadow: 0 0 1px lightslategray, 0 0 1px #0C4793;

    }
}
.main-content {
    color: white;
    text-shadow: 2px 2px 2px black;
    a {
        color: gold;
        text-shadow: 2px 2px 2px black;

    }
}
.email-links {
    width: 95vw;
    grid-column: span 2; /* Span across both columns */
    grid-row: bottom;
    text-align: center;
}

.address-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
