header {
    background-color: #007bc3;
    height: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header p {
    color: white;
    font-size: 45px;
    font-weight: 500;
}

main {
    background-color: transparent;
    height: 100%;
    display: flex;
}

footer {
    background-color: #007bc3;
    height: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

footer .datetime {
    width: 10%;
    background-color: #005380;
    text-align: end;
    height: 100%;
    border-top-left-radius: 25px;
}

footer marquee {
    font-size: 35px;
    color: white;
}

#myCarousel {
    /* background-color: blueviolet; */
    height: 100%;
    width: 50%;
}

#video-part {
    /* background-color: blue; */
    height: 100%;
    width: 50%;
}

.grid-container {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2%;
}

/* Style for each grid item */
.grid-item {
    text-align: center;
    height: 250px;
    box-shadow: 5px 10px 8px #888888;
    border-radius: 10px;
}

/* inside grid */

.main {
    background-color: #007bc3;
    height: 64%;
    display: flex;
    font-size: 90px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.footer,
.header {
    background-color: #005380;
    height: 18%;
    color: white;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 30px;
    font-weight: 500;
}

.footer {
    border-radius: 0 0px 10px 10px;
}

.header {
    border-radius: 10px 10px 0 0;
}

/* card big item */
.header-title,
.footer-title {
    background-color: #005380;
    height: 25%;
    color: white;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 30px;
}

.main-title {
    background-color: #007bc3;
    height: 64%;
    display: flex;
    font-size: 100px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blink {
    animation: blink 1s 3;
}

.footer-title {
    border-radius: 0 0px 10px 10px;
}

.header-title {
    border-radius: 10px 10px 0 0;
}

/* video part */
.item-container {
    /* background-color: antiquewhite; */
    height: 40%;
    padding: 3%;
}

.video-container {
    height: 60%;
    padding: 3% 3% 0 3%;
}

.card-item {
    /* background-color: blue; */
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 5px 10px 8px #888888;
    border-radius: 10px;
}

.video-item {
    /* background-color: blue; */
    height: 100%;
}

/* datetime */
#time {
    font-size: 20px;
    color: white;
    margin-right: 10px;
}

#date {
    color: white;
    font-size: 15px;
    margin-right: 10px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.item {
    width: auto;
}
