body {
    background-color: rgb(20, 20, 20);
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.red {
    color: rgb(255, 103, 103);
    position: relative;
    text-decoration: none;
}

.orange {
    color: rgb(255, 164, 103);
    position: relative;
    text-decoration: none;
}

.yellow {
    color: rgb(255, 240, 103);
    position: relative;
    text-decoration: none;
}

.green {
    color: rgb(116, 255, 103);
    position: relative;
    text-decoration: none;
}

.blue {
    color: rgb(103, 113, 255);
    position: relative;
    text-decoration: none;
}

.purple {
    color: rgb(182, 103, 255);
    position: relative;
    text-decoration: none;
}

.red::after, .orange::after, .yellow::after, .green::after, .blue::after, .purple::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease, left 0.3s ease;
}

.red:hover::after, .orange:hover::after, .yellow:hover::after, .green:hover::after, .blue:hover::after, .purple:hover::after {
    width: 100%;
    left: 0;
}

.red:hover, .orange:hover, .yellow:hover, .green:hover, .blue:hover, .purple:hover {
    text-decoration: none;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.element {
    background-color: rgb(37, 37, 37);
    border-radius: 25px;
    box-shadow: 0px 4px -5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    padding: 10px 15px;
    width: 800px;
    text-align: center;
}

.element:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px -5px rgba(0, 0, 0, 0.1);
}

.invisible{
    color: rgba(0, 0, 0, 0)
}

.player {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    transition: all ease 0.3s;
    padding: 10px 15px;
    position: fixed;
    top: 15px;
    right: 15px;
    overflow: hidden;
}

.player:hover {
    scale: 1.1;
}

.bleft{
    position: fixed;
    bottom: 15px;
    left: 15px;
    max-width: 200px;
}