* {
    box-sizing: border-box;
    margin: 0;
}

body {
    /*font-family: "Roboto", sans-serif;*/
    font-family: "Montserrat", sans-serif;
    background-color: #131313;
    color: #ffffff;

}

h1 {
    text-align: center;
    font-size: 4rem;
    background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

h1::before {
    content: attr(data-text);
    /* Copy the text to the pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: transparent;
    /* Ensure the text color is transparent */
    background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: -1;
    /* Put it behind the actual text */
    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.8),
        /* Stroke-like shadow */
        -3px -3px 0 rgba(0, 0, 0, 0.8),
        3px -3px 0 rgba(0, 0, 0, 0.8),
        -3px 3px 0 rgba(0, 0, 0, 0.8);
    /* Shadow offsets for "stroke" */
}

@keyframes rainbow_animation {

    0%,
    100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

.body {
    max-width: 700px;
    min-height: 100vh;
    margin: 0 auto;
}

.server-list {
    color: rgb(255, 255, 255);
    border: 1px solid #212121;
    border-radius: 8px;
    background-color: #2d2d2d;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.server {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #4c4c4c;
}

h2 {
    border-left: 5px solid orange;
    background-color: #1b1b1b;
    padding-left: 10px;
    margin-bottom: 20px;
}

.server:last-child {
    border-bottom: none;
}

.status {
    font-weight: bold;
}

.online {
    color: #03cc03;
}

.offline {
    color: red;
}

.banner {
    height: 400px;
    margin-bottom: 3rem;
    background-color: #212121;
    position: relative;
}

.banner-content {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    flex-direction: column;
}

.banner-content p {
    font-weight: 500;
    font-size: 18px;
    color: rgb(221, 221, 221);
}

.banner-box {
    background-color: #ff0d0000;
}

.bg-video {
    height: 100%;
    z-index: -1;
    width: 100%;
    object-fit: cover;
}

.srvaddr {
    background-color: #1a1919;
    padding: 2px 5px;
    border-radius: 5px;
    font-family: monospace;
}

.btn {
    margin-left: 5px;
    border-radius: 5px;
    border-style: solid;
    border-color: transparent;
    color: rgb(255, 255, 255);
    background-color: #03cc03;
}

.btn:hover {
    background-color: #43a047;
}