* {
  box-sizing: border-box;
  margin: 2;
  padding: 2;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  color: #000000;
  font-size: 16px;
  
}

a {
  color: #000000;
  text-decoration: none;
  
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  margin: auto;
}

/* Navigation */
.nav-main {
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 20px 0;
}

.nav-brand {
  width: 50px;
}

/* Navbar Left */
.nav-main ul {
  display: flex;
}

.nav-main ul li {
  padding: 10px;
}

.nav-main ul li a {
  padding: 2px;
}

.nav-main ul li a:hover {
  border-bottom: 2px solid #000000;
}

.nav-main ul.nav-menu {
  flex: 1;
  margin-left: 20px;
}

h2 {
  margin: 10px 0;
}

/* Responsive Button */
.menu-btn {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 60px;
  z-index: 2;
  display: none;
}

/* SHOWCASE */

.btn {
  cursor: pointer;
  display: inline-block;
  border: 0;
  font-weight: bold;
  padding: 10px 20px;
  background:  #000000;
  color: #000000;
  font-size: 60px;
  border: 1px solid  #000000;
}

.btn:hover {
  opacity: 0.9;
}

.showcase {
  width: 100%;
  height: 550px;
  background: url("noticias_images/Noticia8.jpg");
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  padding-bottom: 50px;
  margin-bottom: 20px;
  color: #000080;
  font-weight: bold


}
.showcase p {
  margin-bottom: 10px;
  border: 1px solid  #ffff;
  background:  #ffff;
}

.showcase .btn {
  margin-top: 20px;
}

/* News Cards */

.news-cards {
  display: grid ;
  grid-template-columns: repeat(4, 4fr);
  column-gap:50px;
  margin: 80px ; 
 
}

.news-cards img {
  width: 100%;
  height: 180px;
}

.news-cards h3 {
  font-size: 15px;
  padding: 10px;
  color: #000080;
  font-weight: bold

}

.news-cards a {
  padding: 5px 0;
  color: #000000;
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
}