@import url("variables.css");
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.text-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* nie blokuje kliknięć */
    z-index: 0;
    overflow: hidden;
}

.text-background span {
    position: absolute;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.05); /* subtelny kolor dla tła */
    user-select: none;
    transform: rotate(30deg); /* wszystkie w tym samym kącie */
}

.main-content {
    position: relative;
    z-index: 1;
    padding: 50px;
}

.contact-content {
    display: grid;
    /* grid-template-columns: 2fr 1fr; */
    align-items: center;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    background: rgb(255 255 255 / 71%);
    border-radius: 23px;
}

.contact-text-background {
    position: absolute;
    top: 0;
    left: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-height: calc(100%);
    z-index: -1;
}

.contact-content-main {
    background: #ffffff52;
    backdrop-filter: blur(3px);
    border-radius: 9px;
}

.contact-content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content-image img {
    max-width: 100%;
    width: 400px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

#contactList li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

#contactList li a {
    text-decoration: none;
    color: var(--def-color);
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 600px) {
    .contact-content-image img {
        width: 100%;
    }
}
