body {
    margin: 0;
    display: flex;
    font-family: "Highway Gothic Wide";
    text-transform: uppercase;
}
@font-face {
    font-family: 'Highway Gothic Wide';
    src: url(HWYGWDE.TTF);
}

.left-side {
    width: 22%;
}


.fixed-table-container {
    width: 22%; /* Set your desired width */
    height: 95vh; /* Set your desired height */
    overflow: hidden; /* Hides the scrollbar */
    position: absolute; /* Fixes the position */
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 2px solid black;
    padding: 8px;
    text-align: center;
    padding-top: 2.4%;
    padding-bottom: 2.4%;
}

.right-side {
    width: 78%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    color: #ffc23f;
    background-image: url('bg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.top-section h1 {
    margin: 0.3em;
    -webkit-text-stroke: 5px black;
    paint-order: stroke fill;
}

.top-section p {
    -webkit-text-stroke: 1.5px black;
    font-size: x-large;
}

.top-section img {
    height: 10em;
    width: auto;
    margin: 0.6em;
    margin-top: 0.6em;
}

.bottom-section {
    display: flex;
    height: 50%;
}
.bottom-section iframe {
    width: 50%;
    height: 100%;
}

.left-side p {
    text-align: center;
    font-size: 10px;
    position: absolute;
    bottom: 0;
    padding-left: 1%;
}

.left-side img {
    width: 90%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
}

.left-side h2, .left-side h3, .left-side h4 {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    text-transform: none;
}

.left-side h2 {
    text-transform: uppercase;
    color: rgb(206, 0, 0);
    margin-bottom: 0.3em;
}

.left-side h3 {
    margin-top: 0em;
    margin-bottom: 0.3em;
    font-weight: normal;
}

.left-side h4 {
    margin-top: 0em;
    font-weight: normal;
}

.left-side hr {
    height: 2px;
    background-color: black;
    border: none;
    margin-top: 0.8em;
}

#statement {
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    font-weight: normal;
}

.rigs {
    text-align: center;
    font-size: 12.25633234px;
    border-right: 0px;
}

.democrat {
    border-left: 0px;
}

/*
RESPONMDER COLORS + SIZE
*/

.limited {
    font-size: 10px;
    color: blue;
}

.full {
    font-size: 10px;
    color: rgb(0, 0, 0);
}

.cpt {
    font-size: 10px;
    color: rgb(255, 0, 0);
}


.tippitytop {
    width: 100%;
    position: absolute;
    top: 0;
    text-align: center;
}

.nicerWords { 
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #fbc02d;
    overflow: hidden;
    color: black;
}

#temp {
    height: 70%;
    font-size: xx-large;
    margin-left: 2%;
    width: 10%;
    float: left;
}

.nicerWords table {
    height: 60%;
    width: 85%;
    float: right;
    margin: 1%;
    border: 0px;
    table-layout: fixed;
    text-align: center;
}

.nicerWords table, .nicerWords th, .nicerWords td {
    border: 0px solid black;
    border-collapse: collapse;
    padding: 5px;
    text-align: center;
}

.superDuperKYS {
    font-size: 10px;
    color: grey;
}



.scrolling-text-container {
    width: 94%;
    margin: 0 2%;
    margin-top: 0.4%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.scrolling-text {
    display: inline-block;
    animation: scroll 10000s linear infinite;
}

.scrolling-text span {
    display: inline-block;
    padding-right: 30px; /* Space between repeats */
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}