@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
}

a {
    text-decoration: none;
    color: #fff;
}

body {
    background-image: url(../sources/images/background.png);
    overflow: hidden
}

.logo {
    display: block;
    margin: 20px auto;
    width: 200px;
    height: auto;
    margin-left: -20px;
    margin-top: -20px;
}



nav {
    position: absolute;
    top: 60px;
    right: 83px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 0; /* usuń margines, bo pozycjonowanie absolutne */
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    /* opcjonalnie, jeśli chcesz dodatkowe wyrównanie */
    display: flex;
    align-items: center;
}

.nav-text {
    font-size: 14px;
}

nav a:hover {
    color: #ccff7b;
}
.main-text {
    display: block;
    text-align: center;
    color: white;
    width: 500px;
    margin: 0;
    margin-top: 161px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.footer {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    background: rgba(170, 170, 170, 0.03);
    padding: 14px 36px;
    border-radius: 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.footer a {
    color: #fff;
    font-size: 26px;
    transition: color 0.2s, transform 0.2s;
}

.footer a:hover {
    color: #ccff7b;
    transform: scale(1.18);
}