body {
    background-image: url('priv.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.logo {
    text-align: center;
    color: #fff;
    margin-top: 270px;
    font-size: 4rem;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;           /* Allow buttons to wrap to new lines */
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px 10px;            /* Optional: adds space between rows and columns */
}

.link-btn {
    display: inline-block;
    background: rgba(48, 48, 48, 0.7);
    color: #cecece;
    text-decoration: none;
    padding: 15px 40px;
    margin: 0 10px; /* Horizontal spacing between buttons */
    border-radius: 8px;
    font-size: 1.5rem;
    transition: background 0.2s;
}

.link-btn:hover {
    background: #fff;
}

body.blurred > *:not(#welcome-overlay) {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

#welcome-overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(20, 20, 20, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
}

.welcome-content {
    color: #fff;
    text-align: center;
    background: none;
    border-radius: 18px;
    box-shadow: none;
    padding: 15px 40px;
    margin-top: 400px; /* Match .button-group margin-top */
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.welcome-content p {
    font-size: 1.2rem;
    margin: 0;
}

/* Favicon links - Updated based on suggested code change */
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">