* {
  margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif;
}
.nav-container{
  width: 100%;
  height: 60px;
  background-color: burlywood;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position:fixed;
  top: 0;
  z-index: 1000;
}

.logo img{
  width: 60px;
}
.nav-buttons button{
  width: 70px;
  height: 30px;
}

.hero-section{
  width: 100%;
  height: 400px;
  background-color: whitesmoke;
  display: flex;
  justify-content:center;
  align-items: center;
  position:relative;
  top:60px;
  
}

.news-img{
  width: 40vw;
  height: 80vh;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-img img{
  width: 300px;
  height: 200px;
  border: 2px solid goldenrod;
  padding: 8px;
  background-size: contain;
  border-radius: 5px;

}

#heading{
  color: royalblue;
  font-weight: 700;
}
#autor{
  font-style: italic;
  color: rgb(50, 46, 46);
}
.news-data{
  width: 50vw;
  height: 80vh;
  background-color: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-right: 20px;
}

.nextNews{
  margin-top: 10px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: end;
  align-items: center;
}
.prevNews{
  margin-top: 60px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nextNews button{
  width: 50px;
  height: 50px;
  margin-right: 30px;
  position: fixed;
  top: 400px;
  border-radius: 50%;
}

#prev img{
  transform: rotate(180deg);
}
.prevNews button{
  width: 50px;
  height: 50px;
  margin-left: 30px;
  position: fixed;
  top: 400px;
  border-radius: 50%;
}

.footer-con{
  width: 100%;
  height: 60px;
  background-color: burlywood;
  display: flex;
  justify-content: center;
  align-items: center;
}