* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  body {
    background: black;
    overflow-y: scroll;
    font-family: "SUSE", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: white;
    text-align: start;
  }
  .updatesParent {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
      url("/images/pc_bg.webp");
      background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    color: white;
  }
  .updatesParent {
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .updatesParent::-webkit-scrollbar {
    display: none; /* WebKit browsers */
  }
  .updatesChild {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    padding: 0px 30px;
  }
  .updatesTitleBar h2 {
    text-align: center;
    font-size: 35px;
  }
  .updatesTitleBar p {
    margin-top: 20px;
  }
  .updatesContainer {
    margin-top: 50px;
    width: 500px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(179, 104, 29, 0.437);
    backdrop-filter: blur(30px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .notification {
    border: 1px solid white;
    padding: 10px;
    border-radius: 20px;
    background: rgba(0, 128, 0, 0.625);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    animation: movedown 0.5s linear forwards;
    opacity: 0;
  }
  @keyframes movedown {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  .notification:nth-child(1) {
    animation-delay: 0s;
  }
  .notification:nth-child(2) {
    animation-delay: 0.25s;
  }
  .notification:nth-child(3) {
    animation-delay: 0.5s;
  }
  .notification:nth-child(4) {
    animation-delay: 0.75s;
  }
  .notification img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
  .notification a{
    text-align: start; text-decoration: none; color: white;
  }
  .notification a span{
    font-size: 15px; color: rgb(255, 183, 0);
  }
  @media only screen and (max-width: 1024px) {
      .footer {
    display: none;
  }
    .updatesParent h2 {
      font-size: 25px;
    }
    .updatesParent p {
      font-size: 10px;
    }
    .updatesContainer{
      width: 100%;
    }
    .notification{
      height: 60px;
    }
    .notification a{
      font-size: 13px;
    }
    .notification img{
      height: 30px;
      width: 30px;
    }
    .notification a span{
      font-size: 10px;
    }
  }
  