body {
  font-family: Pixelify Sans;
  color: white;
  margin: 0;
  padding: 0;
}

.bg_img {
  position: fixed;
  width: 250%;
  height: 250%;
  top: 50%;
  left: 50%;
  z-index: -9999;
  background-size: 550px;
  background-position: -100px -100px;
  background-image: url("https://izumiihd.github.io/pixelitcdn/assets/background.png");
  transform: translate(-50%, -50%) rotate(15deg);
  opacity: 0.1;
}

.navbar {
  overflow: hidden;
  background-color: #6f057a;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: inset 0 -0.365vw #61056b, 3px 3px 15px rgba(0, 0, 0, 0.6)
}
@media screen and (max-width: 600px) {
  .navbar {
    border-radius: 0; 
    box-shadow: inset 0 -0.365vw #61056b, 3px 3px 15px rgba(0, 0, 0, 0.6)
  }
  .navbar a, .dropdown .dropbtn {
    float: none;
    display: block;
    padding: 10px;
  }
  .dropdown-content {
    position: relative;
    box-shadow: none;
    border-radius: 0;
  }
}
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-shadow: #000 1px 0 13px;
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: purple;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: inset 0 -0.365vw #777378, 3px 3px 15px rgba(0, 0, 0, 0.6);
  z-index: 1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {
  background-color: purple;
}
.dropdown-content a:last-child:hover{
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 -0.365vw #660066, 3px 3px 15px rgba(0, 0, 0, 0.6);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.title_p {
  margin-left: 92%;
  position: absolute;
  top: 1%;
  font-size: 26px;
  color: #fff;
  text-shadow: #000 1px 0 13px;
}
@media screen and (max-width: 600px) {
  .title_p {
    margin-left: 80%;
    position: absolute;
    top: 1%;
    font-size: 24px;
    color: #fff;
    text-shadow: #000 1px 0 13px;
  }
}
.img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: #000 4px 0 20px;
}
.news-container {
  width: 45%;
  background-color: #6f057a;
  border-radius: 5px;
  box-shadow: inset 0 -0.365vw #61056b, 3px 3px 15px rgba(0, 0, 0, 0.6);
  padding: 40px;
  margin: 80px auto;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
  .news-container {

    padding: 40px;
    margin: 80px auto;
    color: #fff;
    font-size: 12px;
    line-height: 1.8;
    transition: all 0.3s ease-in-out;
  }
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: #6f057a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #8c099a;
  border-radius: 10px;
  border: 3px solid #6f057a;
}