body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFE4B5;
}

main {
    padding: 20px;
    text-align: center;
}

.content-container {
    visibility: hidden; 
}
  
.content-container.show {
    text-align: center;
    visibility: visible;
    opacity: 1;
    animation: fadeIn 1s forwards;
}
.logo {
    display: block;
    margin: 10px 10px;
    max-width: 40%; 
    height: auto;
}


.tv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d1f1d;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: openUp 2s forwards;
}



@keyframes openUp {
    0% {
        transform: scaleY(0);
        transform-origin: center;
    }
    100% {
        transform: scaleY(1);
        transform-origin: center;
    }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
h1 {
    margin: 0;
    font-size: 2.5em;
}

.home_container {
    width:100%;
}

.hero-image {
    width: 100%;
    height: 500px;
    /* margin-bottom: 20px; */
}


.feature-section {
    text-align: center;
    margin-bottom: 20px;
}

.feature-section h2 {
    color: #d32f2f;
}

.feature-section p {
    color: #777;
}

.photo {
    cursor: pointer;
}

.modal {
           
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgb(0,0,0); */
    background-color: rgba(0,0,0,0.9);
}


.modal-content {
    margin-top:20%;
    max-width: 80%;
    max-height: 50%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.mySlides {
    display: none;
}
.mySlides img {
    margin-top:20%;
    max-width: 100%;
    height: 300px;
    transition: transform 0.5s ease;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.gallery img:hover {
    transform: scale(1.1); 
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.photo {
    flex: 0 0 25%; /* Adjust the width of each photo as needed */
    position: relative;
}

.caption {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 99%;
    text-align: center;
    color: #fff;
    padding: 2px;
    background: rgba(0, 0, 0, 0.7);
}

h1{
    margin: 0;
    padding: 0;
    font-size: 40px;
    color: #333;
    font-family: Arial, sans-serif;
}

.news-card {
    width: 100%;
    /* margin: 20px auto; */
    /* padding: 20px; */
    border: 1px solid #ccc;
    /* border-radius: 10px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color:rgba(255, 214, 30, 0.8);
    /* overflow: hidden; */
}


.news-card-content {
    padding: 15px;
}

.news-heading {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-card-separator {
    font-size: 14px;
    padding-top: 20px;
    border-bottom: 2px dashed #c0beb6;
    
}
.news-card-date {
    font-size: 14px;
    padding-top: 20px;
    color: rgb(13, 1, 1);
    margin-bottom: 15px;
}

.news-card-description {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    padding: 0px 10px;
    margin: 0px 10px;
}


.background-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Darker overlay */
    z-index: 1;
}
.content {
    position: relative;
    z-index: 2;
    
}

.content p {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
    margin-bottom: 20px;

}

.content button {
    margin: 0 10px;
    padding: 20px 20px;
    font-size: 24px;
    color: white;
    background-color: rgba(255, 214, 30, 0.8);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.content button a {
    color: white;
}

.content button:hover {
    background-color: rgba(224, 30, 30, 0.8);
    
}

@keyframes blink {
    0% { color: red; }
    50% { color: yellow; }
    100% { color: red; }
}

.blinking-heading {
    animation: blink 1s infinite;
    color: rgb(244, 236, 4); /* Optional: to give it a news alert look */
}

@media (max-width: 600px) {
    .photo {
        flex: 0 0 50%; 
        /* margin: 10px 0;  */
    }
    .caption {
        width: 97%;

    }
    .content p {
        font-size: 30px;
    }
    .content button {
        margin: 15px 15px;
        padding: 15px 15px;
    }
    .content a {
        font-size: 20px;
        color: rgb(192, 50, 15);
    }
    .news-card-description {
        font-size: 12px;
    }    
}