/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    text-align: center;
}

/* Add glowing effect to the container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;  /* This centers the logo and content */
    text-align: center;
    background-color: #222;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 255, 153, 0.6), 0 0 25px rgba(255, 0, 128, 0.6);
    width: 100%;
    max-width: 400px;
}

h1 {
    font-size: 3rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #f5f5f5;
    text-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080, 0 0 30px #00ff99, 0 0 40px #00ff99;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 30px;
}

/* Add logo at the top center */
.logo {
    width: 120px;  /* Adjust the size as needed */
    height: 120px;
    background-image: url('https://chepot87.github.io/Norvak-Version-B/img/Norvak.logo.b.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Centers the logo */
}

/* Links styling */
.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-item {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #00ff99;
    color: #111;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
}

.link-item:hover {
    background-color: #ff0080;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
}

.link-item:active {
    background-color: #ff0055;
}
