body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('images/galaxy-background.jpg');
    background-size: cover;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

nav {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffcc00;
    text-decoration: none;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    background-color: rgba(255, 204, 0, 0.3);
    border-radius: 5px;
}

header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #fff;
}

main {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-top: 20px;
}

h1 {
    color: #ffcc00;
}

.clickable {
    cursor: pointer;
}

/*.clickable:hover {
    color: darkblue;
}*/

.project-info {
    margin-top: 20px;
}

.project-info h2 {
    color: #ffcc00;
}

.discord {
    margin-top: 20px;
}

.discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #fff;
    background-color: #7289da;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.discord {
    margin-top: 20px;
}

.discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #fff;
    background-color: #7289da;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    gap: 10px; /* Dodanie odstępu między logo a tekstem */
}

.discord-button img {
    width: 32px;
    height: 24px;
}

.discord-button:hover {
    background-color: #5b6eae;
}

.team-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.team-member h2 {
    color: #ffcc00;
    margin-top: 10px;
}

.team-member p {
    color: #ffcc00;
}