#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 {
    border-radius: .25rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    padding-left: 47.5%;
    padding-right: 47.5%;
    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,#1c1c1c,#6220fb);
    border: 0 solid;
    overflow: hidden;
  }
  
  button:hover {
    cursor: pointer;
    background-image: linear-gradient(90deg,#6220fb,#1c1c1c);
  }

.title {
    text-align: center;
    background-color: #1c1c1c;
    border-radius: 25px;
    position: relative;
    width:  80%;
    left: 10%;
}