.body {
    font-family: sans-serif;
}

.nav {
    position:fixed;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background-color: rgb(226, 232, 240, 0.5);
    box-shadow: 10px 1px 10px lightgray;
}

.nav_title {
    font-weight:normal;
    font-size: 1.5rem;
    padding-left:1%;
}

.nav_list {
    display:flex;
}

.nav_button {
    margin-top:-0.5rem;
    margin-bottom:-0.5rem;
    font-size: 1.0rem;
    font-weight:bold;
    text-align:center;
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    padding-inline: 1.0rem 1.0rem;
    border-radius: 0.25rem;
}

.nav_button:hover {
    background-color: rgba(0, 110, 255);
    color: white;
}

.page_wrapper {
    display:flex;
    flex-direction:column;
}

.page {
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    align-items:center;
}

.title_page_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    background-color: rgb(243, 244, 246);
    border-radius:1rem;
    width:65%;
    height:60%;
    padding-inline:5%;
    box-shadow: 0 8px 8px 0px lightgray;
    border-style:solid;
    border-color:lightgray;
    border-width: 1px;
    margin-top:6%;
}

.title_page_title {
    font-size:4rem;
    font-weight:normal;
    margin-left:2rem;
    align-self:center;
}

.page_title {
    font-size:4rem;
    font-weight:normal;
}

.page_container {
    display:flex;
    flex-direction:column;
    background-color: rgb(243, 244, 246);
    border-radius:1rem;
    text-align: center;
    width:65%;
    height:60%;
    padding-inline:5%;
    box-shadow: 0 8px 8px 0px lightgray;
    border-style:solid;
    border-color:lightgray;
    border-width: 1px;
    margin-top:6%;
}

.container_text {
    grid-column:1 / 2; 
    grid-row: 2/3; 
    line-height:1.5; 
    margin-top:-4rem;
    margin-left:2rem;
}

.button_list {
    display:flex;
    flex-direction:column;
    align-items:center;
    height:100%;
    justify-content:space-around;
    margin-top:-5%;
}

.page_button {
    display:flex;
    flex-direction:column;
    justify-content:center;
    background-color:white;
    width:40%;
    height:30%;
    border-radius:1rem;
    text-align:left;
    box-shadow: 0 8px 8px 0px lightgray;
    padding-inline:2.5%;
    line-height:1.5; 
}

.page_button:hover {
    background-color:rgb(0, 110, 255);
    color:white;
}

.quick_link_list {
    grid-column: 2/2;
    grid-row: 2/3;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    gap:1rem;
    justify-self:center;
    margin-right:-35%;
}

.quick_link_box {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background-color:rgba(0, 110, 255);
    width:3rem;
    height:3rem;
    border-radius:0.25rem;
}

.quick_link {
    width:100%;
    height:100%;
}

.image_container {
    width:50%;
    height:auto;
    min-height:0%;
    min-width:0%;
    grid-column: 2/2;
    justify-self:center;
    align-self:center;
    margin-top: 12rem;
    margin-right:-35%;
}

.page_footer {
    margin-bottom:-3rem;
}

@media only screen and (max-width: 900px) {
    .title_page_container {
        display:flex;
        flex-direction:column;
        height:75%;
    }
    .container_text {
        margin-top:0rem;
    }
    .quick_link_list {
        margin-top: 3rem;
        margin-right:0rem;
    }
    .image_container {
        width:30%;
        margin-top: 0rem;
        margin-right:0rem;
    }
    .title_page_title {
        margin-left:0rem;
    }
    .page_button {
        padding-inline:5%;
        width:60%;
        height:40%;
    }
}

ul {
  list-style-type: none;
  padding-inline-start: 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}  