@font-face {
    font-family: monument;
    src: url(Monument.ttf);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1d3752;
    color: rgb(255, 255, 255);
}

.menu_logo{
    display: block;
    padding-top: 40px;
    position: relative;
}

.menu_logo img{
    width: 350px;
    height: 100px;
    text-align: center;
    align-items: center;
    display: block;
    position: relative;
}

.annualreportcontent {
    width: 70%;
    margin: 100px auto;
    /* border: 1px solid #5c5c5c; color: #fff;*/
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
}

.project__container-title h1{
    color: #fff;
    font-family:"monument", sans-serif;
    font-size: 4.5vw;
    text-transform: uppercase;
    text-align: center;
}

.project__container-subtitle {
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.project-overview{
    padding-top: 50px;
    padding-bottom: 50px;
}

.project-overview p{
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.project-unique{
    padding-top: 10px;
    padding-bottom: 70px;
}

.project-unique p{
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.annualreport {  display: grid;
    grid-template-columns: 1.5fr 0.5fr 1fr;
    grid-template-rows: 1.4fr 0.6fr 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    grid-template-areas:
      "ar-cover front front"
      "ar-cover back back"
      "ar-cover back back";
}
  
  .ar-cover { grid-area: ar-cover; }

  .ar-cover img{
      width: 605px;
      height: 750px;
  }
  
  .front { grid-area: front; }

  .front img{
    width: 580px;
    height: 405px;
}
  
  .back { grid-area: back; }

  .back img{
    width: 780px;
    height: 405px;
}

.pagination a {
    color: rgb(255, 255, 255);
    float: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    font-family:"monument", sans-serif;
    font-size: 5vw;
}
  
.pagination a.active {
    background-color: dodgerblue;
    color: white;
}
  
.pagination a:hover:not(.active) {color:#2980b9;
}

footer a{
    text-decoration: none;
}

.anime-js-title .letter {
    display: inline-block;
    line-height: 1em;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #5260e6; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    font-family: "monument", sans-serif;
}
  
#myBtn:hover {
    background-color: #7da7d9; /* Add a dark-grey background on hover */
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #00000000;
    border-radius: 10px;
}