body {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    color: #fff;
    background: url('/img/background-image2.jpg') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.8); /* Adjust the alpha for tint */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
header {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.6);
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 20px;
}

.app-button {
    width: 200px; /* Adjust width as needed */
    margin: 10px;
    transition: transform 0.3s;
}

.app-button:hover {
    transform: scale(1.1);
}

.features {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features li {
    font-size: 1.3em;
    margin: 10px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.app-button {
    height: 60px; /* Ustaw stałą wysokość dla obu przycisków */
    margin: 10px;
    transition: transform 0.3s;
}

.app-button img {
    height: 100%; /* Ustaw wysokość obrazka na 100% */
    width: auto; /* Zachowaj proporcje */
}

.app-button:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px 20px;
    background: #333;
    color: white;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer li {
    display: inline;
    margin: 0 15px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}