* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

:root {
  /* bg colors */
  --bg-yellow: #ffc815;
  --bg-gray: rgb(129, 129, 129);
  --bg-gray-footer: rgb(65, 65, 65);
  --bg-gray-img: rgb(37 38 38);
  --bg-black: black;
  --bg-white: #fff;

  /* text colors */
  --txt-yellow: #ffc815;
  --txt-white: #fff;
  --txt-gray: rgb(129, 129, 129);
  --txt-gray-footer: rgb(190, 190, 190);
  --txt-black: black;

  /* font styles  */
  --style-1: "Bebas Neue", cursive;
  --style-2: "Roboto Condensed", sans-serif;
}

html {
  scroll-behavior: smooth;
}

button {
  padding: 8px 15px;
  border-radius: 50px;
  border: 2px solid var(--color-main);
  outline: none;
  background-color: var(--color-main);
  color: var(--color-white);
  cursor: pointer;
}

body {
  scroll-behavior: smooth;
}

@keyframes zoom-out {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

/* width */

::-webkit-scrollbar {
  width: 12px;
}

/* Track */

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 2px;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 2px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #d35400;
}

.div-container {
  margin: 0 5%;
}

.div-container-padding {
  padding: 0 11.7%;
}

/* News Section */

.new-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 5%;
}

.new-header > h3 {
  font-family: var(--style-1);
  letter-spacing: 5px;
  font-weight: 300;
  font-size: 65px;
  line-height: 0.6;
  margin-right: 2%;
}

.new-header > a {
  letter-spacing: 1.2px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  color: var(--txt-yellow);
}

.new-header > a::after {
  content: " ";
  width: 0%;
  height: 3px;
  background-color: var(--bg-yellow);
  color: var(--txt-yellow);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
}

.new-header > a:hover::after {
  width: 100%;
}

.new-item-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}

.item-news {
  width: 45%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.news-details {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 60%;
  left: 20%;
  background-color: var(--bg-yellow);
  padding: 7%;
}

.news-details > span {
  color: var(--txt-gray);
  font-size: 20px;
}

.news-details > p {
  margin-top: 8%;
  font-size: 23px;
}

@media screen and (max-width: 1200px) {
  .div-container-padding {
    padding: 0 5%;
  }
}
