body {
    background: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    min-height: 100vh;
}

* {
    font-family: 'Arial Regular', sans-serif;
}

/* Standard Headers */
h1 {
    font-family: Arial SemiBold, sans-serif;
    text-align: center;
    color: white;
    font-size: 30pt;
    position: relative;
    z-index: 2;
}
h3 {
    font-family: Arial SemiBold, sans-serif;
    color: #193052;
    font-size: 16pt;
    margin-bottom: 0;
}
h5 {
    font-family: Arial SemiBold, sans-serif;
    color: #193052;
    font-size: 25pt;
    margin: 0;
}

/* Buttons */
.button {
    background-color: #193052;
    border-radius: 10px;
    border: 3px solid white;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 20pt;
    cursor: pointer;
    transition: 0.2s ease;
    line-height: 1;
}
.button .subtext {
    font-size: 12pt;
    color: inherit;
}
.button:hover {
    background-color: #193052;
    border: 3px solid white;
    color: white;
    scale: 1.01;
}
button.button:active {
    background-color: #b09564;
    border: 3px solid white;
    color: white;
    scale: 0.95;
}

.huge-button {
    background-color: rgba(25, 48, 82, 0.4);
    border: 5px solid white;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    height: 100%;
    width: 100%;
    
}
.huge-button:hover {
    background-color: white;
    color: goldenrod;
}        

/* Short Top Banner */
.bannertitle {
    font-family: Arial SemiBold, sans-serif;
    text-align: center;
    color: white;
    font-size: 30pt;
    position: relative;
    z-index: 2;
    padding: 0px calc(40vw - 120px);
}

.bannertitle::before,
.bannertitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(40vw - 150px);
    height: 4px;
    background-color: currentColor;
    z-index: 1;
}

.bannertitle::before {
    left: 0;
}

.bannertitle::after {
    right: 0;
}

.bannerdescription {
    font-family: Arial Regular, sans-serif;
    color: white;
    font-size: 16pt;
    margin: 1vw 0;
    z-index: 2;
}

.banner {
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    position: relative;
    gap: 20px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 48, 82, 0.5);
    z-index: 1;
}

/* Flexbox Sections */

.flex-wrapper{
    display: flex; 
    justify-content: center; 
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch; 
}
.flex-textbox {
    flex: 1 1 500px;
    min-width: 300px;
    text-align: left;
    color: #193052;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}
.flex-imagebox {
    flex: 1 1 300px;
    min-width: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}