@font-face {
    font-family: WorkSans;
    src: url(/fonts/Work_Sans/WorkSans-Medium.ttf);
}

@font-face {
    font-family: Noah;
    src: url(/fonts/Noah/Noah\ Text\ Heavy.otf);
}

* {
    box-sizing: border-box;
  }

body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    min-width: 900px;
    max-width: 2000px; 
    margin: 0;
}

header {
    display: flex;
    background-color: #22285C;
}

header img {
    display: flex;
    width: 15%;
    margin: 1em;
    animation: appear 1s;
    animation-timing-function: ease-in-out;
}

nav {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 45%;
    animation: appear 1s;
    animation-timing-function: ease-in-out;
}

nav li {
    display: inline;
    margin: 3em;
    font-size: 23px;
    font-family: WorkSans;
}

nav li a {
    text-decoration: none;
    color: #FFFFFF;
}

nav a:hover {
    color: #D4DC43;
}

#banner img{
    margin: auto;
    width: 100%;
    animation: appear 0.5s;
    animation-timing-function: ease-in;
}

.title-header {
    color: #22285C;
    text-align: center;
    padding-top: 1em;
}

.content-container-table {
    display: flex;
    justify-content: space-between;
    padding: 3em;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 80%;
    animation-timing-function: ease-in-out;
}

.content-container-table td{
    padding: 1.5em;
    font-size: 19px;
}


.content-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 3em;
}

.content-container h1 {
    font-size: 36px;
    color: #57B6B2;
}

.content-container p {
    font-size: 19px;
    padding: 1em;
    color: #22285C;
}

.content-container li {
    font-size: 19px;
    color: #22285C;
}

.content-wrapper-frameworks {
    color: #22285C;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 20px;
    margin-bottom: 5em;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
    animation-timing-function: ease-in;

}

.content-wrapper-frameworks p{
    font-size: 19px;
    line-height: 2em;
    font-family: WorkSans;
}

.content-wrapper-frameworks ul{
    font-size: 19px;
    font-family: WorkSans;
}

.content-wrapper-frameworks ul li {
    margin-bottom: 2%;
}

.content-wrapper-reports {
    padding: 4em;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-timing-function: ease-in-out;
}

.content-wrapper-reports img {
    align-items: center;
    width: 100%;
}

.intro-paragraph {
    background-color: #57B6B2;
    padding: 2em;
    margin-bottom: 1em;
    font-family: WorkSans;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-timing-function: ease-in-out;
}

.intro-paragraph p{
color: #FFFFFF;
}

.sub-paragraph {
    background-color: #F7F7E6;
    padding-bottom: 1em;
    padding: 2em;
    font-family: WorkSans;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-timing-function: ease-in-out;

}

.sub-paragraph h2 {
    color: #22285C;
    font-size: 21px;
}

.sub-paragraph img {
    float: right;
    margin-left: 1em;
}

.sub-paragraph li {
    font-size: 17px;
}

article {
    flex: 0 0 70%; /* Article takes up 70% of the container */
}

article h1 {
    text-align: center; /* Centers the text inside the article */

}

aside {
    flex: 0 0 30%;
    background-color: white;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-timing-function: ease-in-out;
}

aside h1{
    text-align: center;
}

aside b {
    color: #22285C;
}

table {
    margin: auto;
    margin-bottom: 1em;
    border-collapse: collapse;
    background-color: #F7F7E6;
    border-radius: 15px;
    overflow: hidden;
    font-family: WorkSans;
}

table td, th {
    border: 1px solid #ceceb9;
    font-size: 15.5px;
    text-align: center;
    
}

table th {
    background-color: #22285C;
    padding: 0.5em;
    font-size: 17px;
}

table td {
    color: #22285C;
}

table tr {
    color: #D4DC43;
}

section h1 {
    font-family: Noah;
    color: #22285C;
    text-align: center;
    font-size: 100px;
    margin: auto;
    margin-bottom: 2%;
}

section h2 {
    font-family: Noah;
    color: #22285C;
    text-align: left;
    font-size: 65px;
    margin: auto;
}

.project-container img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.project-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 2em;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    animation-timing-function: ease-in-out;
}

.project-intro {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    animation-timing-function: ease-in-out;

}

.project-tile {
    width: 33.3%;
    margin-bottom: 1em;
}
        
.project-container h1{
    color: #22285C;
    text-align: center;
    font-size: 80px;
}

.project-content h1 {
    padding-top: 3%;
}
      
footer {
    background-color: #22285C;
    color: #FFFFFF;
    padding: 3em; /* Add space around the entire footer */
    display: flex; /* Enable flexbox layout */
    flex-wrap: wrap; /* Allow wrapping of sections if needed */
    justify-content: space-between; /* Distribute sections evenly */
}

.social-media-icons {
    display: flex;
}

.social-media-icons a img {
    width: 50%;
    height: 90%;
}

.onethird {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
    width: 15%;
}

.onethird h2 {
    color: #FFFFFF;
    font-size: 17px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.onethird li {
    list-style-type: none;
    padding: 2%;
}

.onethird img {
    width: 100%;
    height: 100%;
}

.onethird a {
    color: #A7ACC0;
    text-decoration: none;
}

.onethird a:hover {
    color: #D4DC43;
}

.subheader {
    font-size: 13px;
}

@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}