* {
    color: white;
    cursor: url("https://downloads.totallyfreecursors.com/cursor_files/shuttle.ani"), url("https://downloads.totallyfreecursors.com/thumbnails/shuttle1.gif"), auto;
    font-family: 'Poppins', Arial, sans-serif;
    text-align: center;
}

body {
    margin-top: 50px;
    background-image: url(https://steamcdn-a.akamaihd.net/steamcommunity/public/images/items/463180/83c5e2ce7f74f5e1441d5afe13145dd47da91f04.jpg);
}

h1 {
    font-family: 'Secular One', sans-serif;
}

#date {
    background-color: #ff522c;
    margin: 5px;
    width: 8.5%;
    display: inline-block;
}

.container:hover .image {
    opacity: 0.3;
}
  
.container:hover .middle {
    opacity: 1;
}


.definition {
    width: 50%;
    margin: auto;
}

.definition p {
    line-height: 1.7;
}

.enter-bh {
    animation: glow 5s ease-in-out infinite;
}

.links-list {
    list-style-type: none;  
    width: 96%;
}

.links-list li {
    padding: 5px 0;
}

.links-list a {
    text-decoration: none;
}

.links-list a:hover {
    background-color: #ff1493;
}

.image {
    opacity: 0.85;
    transition: .5s ease;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.button {
    border-radius: 100px;
    border: none;
    background-color: orangered;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    padding: 16px 32px;
}

.button:hover {
    background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
    animation:slidebg 5s linear infinite;
}

::-webkit-scrollbar{
    width: 5px;
    background-color: black;
} 

 @keyframes slidebg {
    to {
        background-position:20vw;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px #fe5a1d;
    } to {
        text-shadow: 0 0 40px #e2725b, 0 0 10px #ff7f50;
    }
}

