/* Ogólne style */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Nagłówek */
header {
    background-color: #2d2d47;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header h1 {
    margin: 0;
    font-size: 3em;
    color: #ffffff;
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Styl znajomych */
main {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.friend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #29293d;
    border: 1px solid #3a3a55;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.friend:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.6);
}

.friend span {
    font-size: 1.2em;
    color: #f0f0f0;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
}

.icons {
    display: flex;
    gap: 10px;
}

.icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background-size: cover;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.icon.github {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733553.png');
}


