/* Podstawowe resetowanie marginesów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Ciemne tło jako baza */
    color: white;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Odstępy między sekcjami */
}

/* Styl dla górnego tekstu */
.top-text {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Styl przycisku */
.signal-button {
    display: inline-block;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 50px; /* Zaokrąglone końce */
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.signal-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

/* Styl dla dolnego tekstu */
.bottom-text {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 480px) {
    .top-text { font-size: 1.2rem; }
    .bottom-text { font-size: 1.1rem; }
    .signal-button { width: 100%; padding: 15px 0; }
}