@font-face {
    font-family: "arialW";
    src: url("../fonts/Arial.woff") format('woff');
}

@font-face {
    font-family: "verdanaW";
    src: url("../fonts/Verdana.woff") format('woff');
}


@font-face {
    font-family: "FuturaC";
    src: url("../fonts/Futura-Condensed.woff") format('woff');
}

body {
    font-family: 'arialW', Arial, sans-serif
}

hr.divider{
  border: 1;
  border-top: 2px solid #9a9a9a;
  margin: 18px 0;
  display: block;
}

.marquee{
    width: 100%;
    overflow: hidden;
    max-width: 1395px;
    position: relative;
}

.track{
    display: flex;
    width: max-content;
    will-change: transform;
    animation: scroll 240s linear infinite;
    position: relative;
    
}

.track img{
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
    height: 600px;
    flex: 0 0 auto;
    display: block;
    position: relative;
    margin: auto;
}

@keyframes scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.overlay-text{
    position: absolute;
    top: 10%;
    left: 15%;
    transform: translate(-50%, -50%);
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
    font-size: clamp(16px, 3vw, 40px);
    color: #ffffff;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5),
        2px -2px 0 rgba(13, 66, 224, 0.9);
}

.overlay-img{
    position: absolute;
    top: 15%;
    left: 12%;
    z-index: 2;
    pointer-events: none;
}

.overlay-img img{
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;

  object-fit: contain;
}
.maincontent {
    margin: auto;
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
    max-width: 1395px;
    overflow-wrap: break-word;
    z-index: 2;
    position: relative;
}

.tileimage {
    background-image: url("../img/tilepattern.png");
    background-repeat: repeat;
    background-size: 300px 300px;
    position: relative;
}

.overlayImage {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    max-width: 100%;
    width: 71%;
    height: auto;
}

.dateStyle {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
    color: #001831;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5),
        2px -2px 0 rgba(156, 167, 206, 0.9);
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.header img {
    max-width: 1395px;
    display: block;
    text-align: center;
}

.headerButtonContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 8px;
    background-image: linear-gradient(0deg, #b5c6d6 25%, #bdcede 25%, #bdcede 50%, #b5c6d6 50%, #b5c6d6 75%, #bdcede 75%, #bdcede 100%);
    background-size: 5px 5px;
    border: none;
    color: #001831;
    font-size: 20px;
    padding-left: 35px;
    padding-right: 42px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 1px 1px;
    font-family: 'FuturaC';
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 15px 15px 0px 0px;
    border-color: #63639c;
    border-style: inset;
    border-width: 2px;
}

.headerButton::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px; /* shadow length */
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.50),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

.newsBox {
    position: relative;
    margin: 0.5vw;
    margin-left: auto; 
    margin-right: 0;
    width: 320px;
    height: 500px;
    background-image: linear-gradient(0deg, #b5c6d6 25%, #bdcede 25%, #bdcede 50%, #b5c6d6 50%, #b5c6d6 75%, #bdcede 75%, #bdcede 100%);
    background-size: 5px 5px;
    border-radius: 30px;
    box-shadow: inset 0 0 10px #28396e, 0px 10px 30px;
}

.newsBoxText {
    position: absolute;
    top: 10%;
    left: 20%;
    transform: translate(-50%, -50%);
    font-family: verdanaW;
    font-style: italic;
    font-size: clamp(16px, 3vw, 40px);
    color: #ffffff;
}