* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
}
a {
  text-decoration: none;
}

.top-bar {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 14px;
  flex-wrap: wrap;
}
.top-links a {
  color: #b1b1b1;
  margin: 0 8px;
  font-size: 10px;
}
.social-icons a {
  color: #fff;
  margin-left: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 2px solid black;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}
.logo {
  font-size: 3rem;
  font-weight: bold;
}
.navbar ul {
  display: flex;
  list-style: none;
}
.navbar li {
  margin: 0 15px;
}
.navbar a {
  color: black;
  font-weight: bold;
}
.navbar a:hover {
  border-bottom: 2px solid black;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
  }
  .navbar ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .navbar a {
    color: white;
  }
  .top-links {
    display: none;
  }
}

.breaking-news {
  background: #f4f4f4;
  padding: 8px 20px;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.ticker {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 15s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.main-news {
  padding: 20px;
  text-align: center;
}
.main-news img {
  width: 100%;
  max-width: 900px;
}
.main-news h2 {
  font-size: 28px;
  margin: 15px 0;
}
.main-news p {
  font-size: 18px;
  color: #555;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
.news-grid img {
  width: 100%;
}
.news-grid h3 {
  font-size: 20px;
  margin: 10px 0;
}
.news-grid p {
  color: #444;
  font-size: 16px;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
.extraText{
  display: none;
}
.hidden{
  display: none;
}
#disapper{
  object-fit: cover;
  z-index: 3;
  /* margin-bottom:50%; */
}
#disapper{

  z-index: 3;
  margin-top:-100%;
}