:root {
    --nav-height: 0px; 
}

* {
    margin: 0;
    color: white;
    box-sizing: border-box;        
    font-family: "Jost", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(25, 25, 25);
    font-size: 25px;
}

.limitter {
    max-width: 2500px;
    margin: auto;
}

.maindiv {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--nav-height));
    width: 100%;
}
.cta-button {
display: inline-block;
margin-top: 11px;
margin-left: 20px; /* przesunięcie w prawo */
transform: translateY(-10px); /* przesunięcie lekko w górę */
padding: 15px 30px;
font-size: 30px;
font-weight: 600;
color: #fff;
background-color: #2196F3;
border: none;
border-radius: 12px;
cursor: pointer;
text-decoration: none;
transition: background 0.3s ease;
animation: pulse 2s infinite ease-in-out;
}
.cta-button:hover {
background-color: #1a75d1;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.08); }
100% { transform: scale(1); }
}

@media (max-width: 768px) {
.cta-button {
padding: 10px 20px;
font-size: 20px;
margin-left: 10px;
border-radius: 8px;
}
}
.contact-section {
scroll-margin-top: 100px; /* żeby po kliknięciu nie zasłaniał navbar */
}

.cover_image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
}

.container100 {
    width: 100%;
}

.textcon {
    width: 60%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.row {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1279px) {
    .row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 1000px) {
    .textcon {
        width: 80%;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}




