:root {
  --mainColor: ;
  --mainFontColor: rgba(255, 255, 255, .85);
  --mainBorder: 1.5px solid var(--mainFontColor);
}

#mainBg {
  background-image: url(img/bg.jpg);
}

.mainCover {
  background-color: rgba(34, 24, 20, 0.8);
}

#home {
  background-image: url(img/home01.jpg);
  height: 90vh;
}

.homeCover {
  background-color: rgba(64, 33, 15, 0.3);
}

.week {
  width: 100px;
  display: inline-block;
}

h3,
footer {
  font-weight: 600;

}

.newsTitle {
  padding-top: 15px;
  padding-bottom: 10px;
  border-bottom: var(--mainBorder);
}

.newsTitle i:hover {
  opacity: 1;
}

.newsTitle i {
  width: 50px;
  cursor: pointer;
  text-align: center;
  font-size: 36px;
  line-height: 30px;
  font-weight: bold;
  color: var(--mainFontColor);
  float: right;
  opacity: 0.5;
  transition: 0.5s;
}

.newsText {
  border-bottom: var(--mainBorder);
  padding: 20px 0;

}

.newsText a:hover {
  background-color: beige;
  color: var(--hoverColor);
}

.newsText a {
  padding: 5px;
  border: 2px solid beige;

  font-size: 18px;
  margin-top: 20px;
  width: 30%;
  text-align: center;
  transition: 0.5s;
}

@media screen and (max-width:770px) {
  #home {
    height: 70vw;
  }

  .homeCover h4 {
    position: absolute;
    left: 7.5%;
    bottom: 10vh;
  }

  .newsText a {
    padding: 5px;
    border: 2px solid beige;
    font-size: 18px;
    margin-top: 20px;
    margin: auto;
    width: 30%;
    text-align: center;
    transition: 0.5s;
  }