body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff, #40e0d0); /* Gradient od białego do turkusowego */
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 30%; /* Zmniejszenie logo o 70% (zakładam, że oryginalnie było 100%) */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #32cd32, #006400); /* Gradient od ciemniejszego zielonego (limegreen) do bardzo ciemnego zielonego (darkgreen) */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    width: 350px; /* Dopasowanie szerokości do najdłuższego tytułu */
    text-align: center;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}
