body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    text-align: start;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.panel-blue {
    background-color: #191970;
    color: white;
}

.panel-white {
    background-color: white;
    color: darkblue;
}

h1, h2 {
    margin-bottom: 20px;
    font-family: Manrope, "Times New Roman";
    margin-left: 20px;
    text-align: start;
    font-size: 2em;
}

h3 {
    margin-bottom: 20px;
    font-family: Manrope, "Times New Roman";
    margin-left: 20px;
    font-weight: bolder;
    text-align: start;
    font-size: 1.3em;
}

p {
    font-family: inter, Arial;
    max-width: 1500px;
    margin-left: 20px;
    line-height: 1.6;
    text-align: start;
    font-size: medium;
    font-size: 1.2em;
}


.p_tight {
    font-family: inter, Arial;
    max-width: 1500px;
    margin-left: 20px;
    text-align: start;
    font-size: 1em;
}

li {
    font-family: inter, Arial;
    max-width: 1500px;
    margin-left: 20px;
    line-height: 1.6;
    text-align: start;
    font-size: medium;
    font-size: 1.2em;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f2f2f2;
    color: #666;
    font-size: 0.9em;
}

header {
    padding: 20px;
    background-color: #f2f2f2;
    color: #666;
    font-size: 1.5em;
}

a:link {
    color: blue;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: pink;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}

.grid-header {
    display: grid;
    grid-template-columns: 90pt 400px 1fr;
    height: 80pt; /* Optional height */
}

.gleft, .gmiddle, .gright {
    padding: 0px;
    display: flex;
    align-items:start;
}

.gright {
    justify-content: flex-end;
}

.panel {
    width: 100%;
    display: grid;
    margin: 0px;
    padding: 0px;
}

.top-panel {
    background-color: #0077cc;
    height: 50%; /* or any value like 200px */
    grid-row: 1;
    grid-column: 0;
    padding: 0px;

}

.bottom-panel {
    background-color: #005599;
    height: 50%;
    grid-row: 2;
    grid-column: 0;
    padding: 0px;
}

.subheading {
    font-family: inter, Arial;
    max-width: 700px;
    margin: 0 auto;
    font-weight: lighter;
}

.fouritems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust minmax(250px, 1fr) for desired column width */
    gap: 20px; /* Optional: for spacing between grid items */
    width: 100%; /* Ensure the grid spans the full page width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

.gradientline {
    height: 3px;
    border: none;
    background: linear-gradient(to right, purple, purple, royalblue);
    margin-left: 20px;
}

.filledbox {
    border-radius: 25px;
    background: linear-gradient(to right, purple, purple, royalblue);
    padding: 20px;
    color: white;
}

.link-button {
    border: 2px solid grey;
    letter-spacing: 2px;
    box-shadow: 4px 4px 0 grey;
    text-decoration: none;
    width: max-content;
    font-family: sans-serif;
    position: relative;
    background: white;
    color: purple;
    font-size: 2rem;
    border-radius: 25px;
}

.rightjust {
    text-align: right;
}

.small_p {
    font-family: inter, Arial;
    max-width: 1500px;
    margin-left: 20px;
    line-height: 1.2;
    text-align: start;
    font-size: 0.8em;
}

.positioned {
    position: relative;
    align-content: start;
    float: left;
    margin-left: 20px;
}
