#container{
    color: whitesmoke;
    font-family: monospace;
    background-color: #313131;
    background-image: radial-gradient(rgba(255, 255, 255, 0.171) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px;
    animation: backgroundPostion 30s linear infinite;
}

@keyframes backgroundPostion {
    0%{
        background-position: 0% 0%;
    }
    100%{
        background-position: 100% 100%;
    }
}

button {
    width: 80%;
    border-radius: .25rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    height: 50px;
    font-size: 0.7rem;
    line-height: 14px;
    letter-spacing: 1.2px;
    background-image: linear-gradient(90deg,#242424,#6220fb);
    border: 0 solid;
    overflow: hidden;
  }
  
  button:hover {
    cursor: pointer;
    background-image: linear-gradient(90deg,#6220fb,#242424);
  }

.title {
    text-align: center;
    background-color: #1c1c1c;
    border-radius: 25px;
    position: relative;
    width:  80%;
    left: 10%;
}

#publicReleasesText {
    background-color: #6220fb;
    border-radius: 25px;
    width: 90%;
    position: relative;
    left: 5%;
}

#publicReleasesArea {
    text-align: center;
    background-color: #1c1c1c;
    border-radius: 25px;
    position: relative;
    width:  90%;
    height: 500px;
    left: 5%;
}

#publicReleases {
    display: grid;
}
