/* General Reset */
/* http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Body Styling */
body {
    background: #A5A6ff;
    color: #130f49;
    text-align: center;
    font-family: "Karla", sans-serif;
    /*line-height: 1.5;*/
}

/* Header */
.header {
    padding: 35px;
    padding-left: 10px;
    background: #130f49;
    /*text-align: left;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}

/* Scrolling Text (Marquee Effect) */
.scroll-container {
    width: 100%;
    padding: 3px 0px;
    overflow: hidden;
    background: #130f49;
    color: #fff;
    white-space: nowrap;
}
.scroll-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 80s linear infinite;
}
.scroll-container:hover .scroll-track{ /* Pause animation when hovered */
    animation-play-state: paused;
}
.scroll-item {
    display: inline-block;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
}

.highlight-text {
    font-size: 26px;
    font-weight: bold;
    font-style: italic;    
}
@keyframes scroll-left {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-215vw);
    }
}

/* Description */
.desc {
    margin-top: 50px;
    padding: 30px;
    font-size: 20px;
    /**/
    max-width: 100%;
    margin: auto;
}
.desc h2 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 20px;
}
.desc p {
    margin-top: 20px;
}

/* File Container */
.files-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    /**
    max-width: 1200px;*/
    margin: auto;
}

/* File Cards */
.file-card {
    width: 200px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}
.file-card:hover {
    transform: scale(1.2);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #b3b6ea;
    background: #130f49;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.btn:hover {
    background: #b3b6ea;
    color: #130f49;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}