body {
    max-width: 1290px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Titillium Web', sans-serif;
    font-size: 12px;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}
h1{
    font-size: 1.6em;
    font-family: 'Oswald', sans-serif;
}
p{
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    line-height: 1.5em;
}
li{
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    line-height: 1.5em;
}
.header-logo{
    width: 180px;
}
.content{
    padding: 30px 10px 30px 10px;
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    
}
a{
    color: #1b3059;
}
.resources{
    padding-top: 20px;
}
.resource-box{
    border: 1px solid rgb(204, 204, 204);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
    box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
}
.resource-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid rgb(204, 204, 204);
    padding: 1rem;
}
.resource-pdfs{
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}
button{
    padding: 10px;
    background-color: #fff;
    font-family: 'Oswald', sans-serif;
    border: 1px solid rgb(255, 255, 255);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.0);
    transition: box-shadow 0.4s ease-in-out;
}
button:hover{
    padding: 10px;
    background-color: #fff;
    font-family: 'Oswald', sans-serif;
    border: 1px solid rgb(204, 204, 204);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
}
#download-modal{
display: flex;
align-items: center;
justify-content: center;
}
a{
    font-size: 13px;
}
button i{
    font-size: 20px;
}

/* Add styles for the thumbnail images */
  #thumbnail1> img, #thumbnail2> img{
      width: 100px;
  }

  #thumbnail1, #thumbnail2{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease-in-out;
  }

  #thumbnail1:hover, #thumbnail2:hover{
    box-shadow: 0 5px 8px rgb(0 0 0 / 20%);
  }

  .footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer> img{
    width: 100px;

  }
	/* Style for the popup modal */
    .modal {
        display: none;
        position: fixed;
        margin: 0px;
        z-index: 1;
        width: 100vw;
        height: 100vh;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: hidden;
        background-color: rgba(0,0,0,0.4);
    }
    #print-modal, #download-modal{
        display: none;
    }

    /* Style for the PDF container */
    .pdf-container {
        position: relative;
        margin: 4% 8%;
        width: 80vw;
        height: 80vh;
        top: 40;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
    }

    /* Style for the close button */
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 35px;
        background-color: #fff;
        font-weight: bold;
        padding: 20px;
        cursor: pointer;
    }
    li>a{
        font-size: 16px;
        line-height: 28px;
    }
    .print{
        background-color: #1b3059;
        padding: 10px 30px;
        margin: 0px 10px;
        color: #fff;
        font-family: 'Oswald', sans-serif;
        text-decoration: none;
    }
    .print:hover{
        background-color: #4e89bc;
        
        padding: 10px 30px;
        margin: 0px 10px;
        cursor: pointer;
    }
 