/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: url('https://i.centauri.dev/arsGdrJXpoTwlU.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #ffffff;
}

/* Blurred overlay for background */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 47, 51, 0.9), rgba(35, 39, 42, 0.9));
    backdrop-filter: blur(8px);
    z-index: -1;
}

/* Card */
.card {
    text-align: center;
    padding: 2em;
    background-color: #36393f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    border: 1px solid #7289da;
    z-index: 1;
}

/* Header text */
h1 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
    color: #b3b3ff;
}

/* Title text */
p {
    color: #99aab5;
    margin-bottom: 1em;
}

/* Description text */
.description {
    font-size: 0.9em;
    color: #a3a6c1;
    margin-bottom: 1.5em;
}

/* Links styling */
.links a {
    display: inline-flex;
    align-items: center;
    color: #7289da;
    text-decoration: none;
    font-weight: bold;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    background-color: #4f5660;
    transition: background-color 0.3s, color 0.3s;
    margin: 0.2em;
}

/* Icon size and spacing */
.links a i, .links a img.icon {
    margin-right: 0.4em;
    font-size: 1.2em;
    width: 20px; /* For image icon */
    height: 20px; /* For image icon */
}

/* Hover effect */
.links a:hover {
    background-color: #7289da;
    color: #ffffff;
}

