*, 
*:before, 
*:after{
    box-sizing: border-box;
}
html{
    font-size: 8px;
}
body{
    margin: 0;
    padding:0;
    background-color: white;
    font-family: "oswald", sans-serif;
    font-style: normal;
    text-align: center;
}

main {
    width: 120rem;
    height: 67.5rem;
    background-color: #ffffff;
    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:rgb(62, 43, 47);

}

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

.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: white;
}

.bottom {
    width: 120rem;
    height: 5rem;
    background-color: #90D5AC;
    color: #721B43;
    float: none;
    clear: both;
}


.logo {
    background-color: white;
    width: 35rem;
    height: auto;
    padding-top: 0.9rem;
    /* padding-left: 7rem; */
    margin-left: 2.8rem;
    padding: 1rem;

}

.vl {
    border-left: 0.2rem solid green;
    height: 3rem;
    left: 1rem;
    top: 0.2rem;
    display: none;

  }

.sidetext {
    display: none;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    
    font-size: 1.8rem;
    width: 23.5rem;
    height: auto;
    left: 22rem;
    color: #3d2a2f;
    top: 1.4rem;
}


/* Date / Time */
.date-container {
    background-color: #90D5AC;

    font-size: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.date-container .date {
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);

    background-color: #007953;
    color: #fff;
    
    padding: 1rem;
}

.date-container .time {
    background-color: #90D5AC;
    color: #000000;
    padding: 1rem;
}

/* News Slider */
h1{
    font-size: 3rem;
    padding: 1rem;
    font-weight: 500;
    text-align: left;
}

.dc {
    color: #0B8261;
}
.news {
    color: #0B8261;
}



.menu {
    display: none;
    color: #ffffff;
}

.newsline{
    height: .9rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.lineleft{
    max-width:19rem;

    background-color: #000000;
}

.lineright{
    background-color:  #0B8261;
}
.news-heading {
    font-size: 2.5rem;
    height: 5.625rem;

}

#newsSlider .news-item {
    font-size: 2rem;
    background-color: cornflowerblue;
    padding: 1rem;
}

.news-wrapper {
    display: flex;
}

.news-wrapper .news-image {

    width: 17rem;
   
}

.news-slider {
    width: 61rem;
}

/**
Modify the .slick-dots class to style navigation dots
Make sure to use rem units
*/

/* DC Eats */
.ticker-tape {
    display: flex;
    overflow: hidden;
    background-color: #FFB600;
    
}



  @keyframes sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
  }

.ticker-tape h2 {
    width: 25rem;
    background-color: #007853;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 400;
    white-space: nowrap; /* Corrected property to prevent text wrapping */
    color: white;
    padding: 1.0rem 2rem;
    z-index: 1;
    height: 5rem;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.marquee-wrapper .marquee {
    margin-top: 0.2rem;

    display: flex;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

.marquee-wrapper .marquee p {
    font-family: "oswald", sans-serif;

    display: inline-block;
    font-size: 2.5rem;
    font-weight: 500;
    margin-right: 5rem;
    color: #007853;
    padding: 1rem;
}


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

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

@keyframes swap {
    0%, 50% {
        left: 0%;
    }
    50.01%, 100% {
        left: 100%;
    }
}






.weather-pane{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.weather-tab{
    color: #fff;
    display: flex
;
    gap: 1rem;
    padding: 1rem;
    background-color: rgb(45, 32, 36);
    height: 100%;
    align-items: center;
    position: relative;
    flex-direction: column;
    /* align-content: center; */
    justify-content: space-between;

}
.weather-tab > span:first-of-type {
    font-size: 2rem; /* Adjust this value to your preferred size */
  }

.weather-tab:nth-child(even){
    background-color: rgb(62, 43, 47);
}


.weather-tab span {
    font-size: 1.5rem; /* Adjust as needed */
    font-weight: 400; /* Regular weight */
}

.weather-tab div span::after {
    content: "°";
    font-family: Arial, sans-serif; /* Try a different font */
    font-weight: bold;
    font-size: 1.2em; /* Slightly larger if needed */
}


.weather-tab img {
    transform: scale(0.8); /* Adjust the scale factor as needed */
    width: 76%; /* Alternative: Adjust width */
    height: auto; /* Maintain aspect ratio */
}


/* .weather-tab:not(:last-child)::after{
    content: "";
    position: absolute;
    right: calc(0.125rem / -2);
    width: 0.125rem;
    height: 74%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color: #ffffff;
    display: block;
    z-index: 100;
} */