*, 
*:before, 
*:after{
    box-sizing: border-box;
}
html{
    font-size: 8px;
}
body{
    margin: 0;
    padding:0;
    background-color: #002319;    
    text-align: center;
}

main {
    width: 120rem;
    height: 67.5rem;
    background-color: #bbb;
    margin: 0 auto;
}

.left-side {
    width: 42rem;
    height: 62.5rem;
    float: left;
}

.left-side-top {
    width: 42rem;
    height: 12.5rem;
    background-color: #fff;
}

.left-side-middle {
    width: 42rem;
    height: 12.5rem;
    background-color: #ddd;
}


.left-side-bottom {
    width: 42rem;
    height: 37.5rem;
    background-color: #000;
}

.right-side {
    width: 78.0rem;
    height: 62.5rem;
    float: left;
}

.right-side-top {
    width: 78.0rem;
    height: 43.875rem;
    background-color: #ddd;
}

.right-side-bottom {
    width: 78.0rem;
    height: 18.625rem;
    background-color: #fff;
    
}

.bottom {
    width: 120rem;
    height: 5rem;
    background-color: #6F1D46;
    float: none;
    clear: both;
    border-right: 1rem solid #ffb600;

}

/* Logo pane */
.infographics-logo {
    width: 100%;
    padding: 1.5rem;
    height: 9rem;
}

.date-container {
    font-family: "Oswald", sans-serif;
    display: grid;
    grid-template-columns: 3fr 1fr;
    font-size: 2rem;
    background-color: #3E2B2F;
    height: 3.5rem;
    align-items: center;

}

.date-container .date {
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3E2B2F;
    border-radius: 0 0 2rem 0;
    background-color: #90D5AC;
}

.date-container .time {
    color: #fff;
}

/* weather-pane */
.weather-day{
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    background-color: #ffb600;
    color: #3E2B2F;
    font-size: 1.8rem;
    padding: 0.8rem;
    box-shadow: 0rem 0.5rem #3e2b2f51 ;
}
.weather-pane{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: #6F1D46;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    border-bottom: 0.8rem solid #ffb600;
}
.weather-tab{ 
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
    position: relative;

}
.weather-icon{
    margin: 0 auto 0 auto;
    width: 4rem;
}
.weather-temp{
    margin-left: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
}

.weather-tab:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    width: 0.125rem;
    height: 80%;
    margin: auto 0;
    background-color: #ffb600;
    display: block;
}





/* News Pane */
.slider-wrapper {
    height: 18.625rem;
    display: flex;
    gap: 5.7rem;
    
}
/* .slider-image {
    /* width: 20rem;
} */
.news-headline{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: flex-start;
    padding: 1.5rem 2rem 0.5rem 2rem;
    position: absolute;
}
h2{
    font-family: "Oswald", sans-serif;
    color: #007853;
    font-size: 2.4rem;
    text-align: left;
}
h2 span{
    color: #3E2B2F;
}
.slider {
    align-self: flex-end;
    width: 50rem;
    height: 11.5rem;
    text-align: left;
    padding: 0 0 0 2rem;
    position: relative;
}
h3{ 
    padding-bottom: 0.5rem;
    font-family: "Oswald", sans-serif;
    font-size: 1.9rem;
    color: #007853;
    line-height: 1.9rem;
}
.slider-item p{
    font-family: "Lato", sans-serif;
    font-size: 1.4rem;
    color: #3E2B2F;
    line-height: 1.6rem;

}

.line-container {
    display: flex;
    gap: 0.5rem; /* Adds a gap of 1rem between the lines */
}

.line {
    height: 0.5rem; 
}

.line-1 {
    width: 2.5rem; 
    background-color: #007853; 
}

.line-2 {
    width: 45rem;
    background-color: #3E2B2F; 
}

/* Motion Graphics Pane */
.motion-graphics{
    width: 42rem;
    height: 37.5rem;
}




/* Ticker Tape / DC Eats */
.ticker-tape {
    display: flex;
}

.menu-name{
    color: #ffb600;
}

.ticker-left {
    font-family: "Oswald", sans-serif;
    color: #3E2B2F;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 20rem;
    font-size: 2rem;
    background-color: #ffb600;
    border-radius: 0 0 2rem 0;
}

.ticker-date{
    border-right: 1px solid #6F1D46;
    font-weight: bold;
    padding: 0.5rem;
    padding-right: 1rem;
    text-transform: uppercase;
}

.marquee-container {
    width: 110rem;
    overflow: hidden;
    white-space: nowrap;
    
}

.marquee-container p {
    display: inline-block;
    font-size: 2rem;
    margin-right: 1rem;
    color: #fff;
    font-family: "Lato", sans-serif;
    padding: 1.5rem;
    
}

.marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee .marquee-collection {
    position: relative;
    left: 0;
    animation: swap 30s linear infinite;
}

/* Transition */
@keyframes marquee {
    0% {
      transform: translateX(0)
    }
    100% {
      transform: translateX(-100%)
    }
}
  
@keyframes swap {
    0%, 50% {
        left: 0%;
    }
    50.01%,
    100% {
        left: 100%;
    }
}


/* youtube */

.youtube{
    width: 100%;
    height: 100%;
}