body{
    margin: 0;
    background-color: rgb(248, 243, 236);
}

.header_main{
    padding: 5%;
    min-height: 75vh;
}

.title_text{
    font-family: Geneva;
    font-size: xx-large;
}

.subtitle_text {
    padding: 0px 10px;
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 22px;
    font-weight: 300;
}

.main_text{
    padding: 0px 10px;
    font-size: 18px;
    font-family: 'Arial Narrow Bold', sans-serif;
    text-align: justify;
}

.small-text {
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 14px;
    color: rgb(13, 24, 34);
}

.links {
    color: rgb(13, 24, 34);
    font-weight: bold;
    text-decoration: none;
}

.center_align_text {
    text-align: center;
}

.underline_text {
    text-decoration: underline;
}

.center_align{
    align-items: center;
    justify-content: center;
}

.stackable_container{
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
}

.stacked_layout{
    display: grid;
    grid-template-columns: 1fr; 
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bottom_links{
    width: 100%; /* Ensures it spans the full width */
    color: rgb(13, 24, 34);
    background-color: rgba(191, 220, 239, 0.8);
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.unstacked_navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navbar_style{
    display: grid;
    grid-template-columns: 1fr; 
    align-items: center;
    justify-content: space-between;
    padding-right: 10%;
}

.navbar_links {
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 17pt;
    color: black;
    text-decoration: none;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.45);
    padding: 8px;

}

.navbar_links:hover {
    background-color: rgb(231, 226, 222);

}

.pad_boxes {
    margin: 40px 0px;

}

.image {
    border-radius: 5px;
    max-height:180px;
    border-image: round;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.right_divider {
    border-right: thin solid #000000;
}