body {
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

server-widget, user-widget {
    width: 300px;
    height: 60px;
    background: #2b2d31;
}

.container {
    width: 50%;
    height: 90%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.5vh;
    flex-direction: column;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    padding-bottom: 1vh;
}

.container:hover {
    transform: translateY(-1vh);
}

a {
    margin: 0.5vh;
    padding: 2vh;
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 1.5vh;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    transform: translateY(-5px);
}

.discord-btn {
    background-color: #5865F2;
}

.discord-btn:hover {
    background: #4c57d4;
}

.donate-btn {
    background-color: #23a559;
}

.donate-btn:hover {
    background: #1c8c4b;
}

h2 {
    margin: 0;
}

p {
    text-align: center;
    padding: 2vh;
    margin: 0;
}

user-widget {
    margin-top: 1vh;
}