
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.slideshow-container {
    max-width: 100%;
	 border-radius: 1000px; 
    position: relative;
    margin: auto;
}

.slide {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}







* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    padding: 50px;
}

.news-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content .date {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.card-content a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    transition: color 0.3s;
}

.card-content a:hover {
    color: darkblue;
}
