
ul
{
    list-style-type: none;
    border-radius: 15px;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    text-align: center;
}

li
{
    float: left;
}

li a
{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover
{
    outline: white;
    outline-style: dotted;
    outline-offset: -10px;
    border-radius: 15px;
}

body
{
    color: white;
    font-family: "Baumans", system-ui;
    font-size: large;
    margin: auto;
    text-align: center;
    max-width: 700px;
}

.page-content {
    margin: 20px;
}

/* TEXT */
h1, h2, h3, h4, h5 {
    font-family: "Baumans", system-ui;
    margin: 0px;
}

hr {
    height: 3px;
    border: none;
    background-color: #ffffff;
    border-radius: 10px;
}

/* BOXES */
* {
    box-sizing: border-box;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/* BLACK BACKGROUND BOX */
.black-box {
    position: relative;
    text-align: center;
    border-radius: 15px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px;
    text-align: center;
}

.s-transparent-box {
    position: relative;
    border-radius: 15px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.792);
    padding: 15px;
    text-align: center;
}

.footer {
    position: absolute;
    color: white;
    text-align: center;
    border-radius: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
}

/* BUTTONS */
.btn {
    font-weight: bold;
    padding: 10px;
    letter-spacing: .05em;
    text-transform: none;
    background-color: transparent;
    background: rgb(255, 255, 255);
    border: none;
    margin: 6px;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
}

.dk-btn {
    background: rgba(255, 255, 255, 0.152);
    color: white;
}

.small-btn {
    padding: 6px 11px 6px 11px;
    border-radius: 50%;
}

.smallest-btn {
    border-radius: 50%;
    padding: 5px 10px 5px 10px;
    margin: 0px;
}
.text-color-animation {
    background-clip: text;
    color: transparent;
    background: linear-gradient(to right, #ff00b7, #7b00ff , #00b3ff, #0048ff);
    -webkit-background-clip: text;
    animation: color-animation 4s ease-in-out infinite;
    background-size: 400% 100%;
}
.background-color-animation {
    color: transparent;
    background: linear-gradient(to right, #ff00b7, #7b00ff , #00b3ff, #0048ff);
    animation: color-animation 4s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes color-animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}