
.container {
  background: rgba(0,0,0,0.8);
}

.frosted-window {
    -webkit-backdrop-filter: blur(8px);  /* Safari 9+ */
    backdrop-filter: blur(8px); /* Chrome and Opera */
    box-shadow: 5px 5px 5px 5px rgb(0 0 0 / 15%);
    background-color: rgb(200 200 200 / 15%);
    border-radius: 1em;
    padding-left:1em;
    padding-right: 1em;
}

.news-page {
  height: 91vh;
  display: flex;
  justify-content: flex-start;
  margin-top: 1em;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}
.news-page-inner {
  min-width: 80%;padding:1em;padding-top:.1em;margin-right: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1em;
}
.news-page-second-inner {
    display: flex;
    justify-content: space-between;
}
.news-page-image-part {
  min-width: 10em;
  min-height: 10em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2em;
}
.news-page-text-section {
  max-width: 27em;
  font-size: 1.5em;
  padding: 0px;
  margin-top: 0px;
}
.news-page-text-paragraph {
  max-width: 27em;
  font-size: 1em;
  padding: 0px;
  margin-top: 0px;
}

body {
    background-color:black;
    color:white;
    background-image: url("../images/background.png");
    background-repeat: no-repeat, repeat;
    background-position: center;
    background-size:auto 100%;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: gray;
  text-align: right;
  z-index: 1000;
}


img {
  border-radius: 5px;
}

button {
  cursor: pointer;
}

@media (max-width: 1000px) {
  .news-page-second-inner {
    flex-direction: column;
  }

  .news-page-inner {
    font-size: .7em;
  }

  .inner-page {
    width: 87%;
    margin-left: 3%;
    padding-right: .5em;
    padding-left: 1em;
  }

  .news-page {
    width: 87%;
    margin-left: 3%;
    padding-right: .5em;
    padding-left: 1em;
  }

  img {
    max-width: 21em;
    padding-left: 2em;
  }
}

@media (min-width: 1450px) {
    .main-page {
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      align-items: center;
    }
    .inner-page {
      width:80em;
    }
}


