@font-face {
    font-family: 'Chaney Wide';
    src: url('/fonts/CHANEY-Wide.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
@font-face {
    font-family: 'Chaney';
    src: url('/fonts/CHANEY-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

body {
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #FFF9E4;
}
/* Extra small devices (phones, 600px and down) */
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-family: "Chaney Wide", sans-serif;
    color: #036746;
    text-align: left;
    font-weight:normal;
    line-height: 0.9;
}
p {
    margin-bottom: 10px;
    font-family: "Space Grotesk", sans-serif;
    color: #6E5400;
    font-size: 1rem;
}
ul, ol {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: #6E5400;
}
span {
    font-family: "DM Mono", monospace;
    color: #6E5400;
    font-weight: 500;
}
a {
    text-decoration: none;
    color: #f75910;
}
header h1 {
    font-size: 3rem;
    font-family: "Chaney Extended", sans-serif;
    text-align: left;
}
#header-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
header img {
    width: 100%;
    height: auto;
}
header #location-tag {
    display: block;
    font-size: 1rem;
    font-family: "DM Mono", monospace;
    font-weight: 500;
    letter-spacing: 2.8px;
    color: #036746;
}
#header-buttons {
    display: flex;
    gap: 10px;
}
main {
    padding: 1rem;
}
.issue-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0px;
    padding: 10px 0;
    color: white;
    text-align: center;
    background-color: #036746;
}
.issue-title h1 {
    font-family: "Chaney Wide", sans-serif;
    margin: 0;
    color: white;
}
.issue {
    display: inline-block;
    padding: 15px 0px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #ccc;
}
.issue:hover {
    background-color: #ffee906f;
}
.issue h3 {
    margin: 0;
    margin-left:10px;
    font-size: 2rem;
    color: #036746;
    font-family: "Chaney Wide";
    font-weight: normal;
}
.issue p {
    display: inline-block;
    margin: 0;
    width: 100%;
    color: #6E540066;
    font-family: "Chaney";
    font-size: 1.4rem;
    animation: marquee 8s linear infinite;
}
.button {
    background-color: #f75910;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: "DM Mono", monospace;
    text-transform: capitalize
}
.button:hover {
    background-color: #f75910cc;
}
@keyframes marquee {
    100% { transform: translateX(-200%); }
}

@media only screen and (min-width: 900px) {
    main {
        width:50%;
        margin: auto;
    }
    h1 {
        font-size: 3rem;
        margin-top: 1rem;
        line-height: 0.9;
    }
    h2 {
        font-size: 2.4rem;
        margin-top: 1rem;
        line-height: 0.9;
    }
    h3 {
        font-size: 2.2rem;
    }
    .issue p {
        animation: marquee 12s linear infinite;
    }
}
