body {
    font-family: 'Varela Round', sans-serif;
    /* background-color: #b0d3e6; */
    background-image: url('assets/stairy_night.jpg'); /* podaj właściwą nazwę pliku */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.link:hover {
    color: rgb(168, 16, 16);;
}

.container {
    background-color: #f4fbff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#important {
    /* font-size: 1.15em; */
    text-align: center;
}

#welcome {
    text-align: center;
}

#critic {
    text-align: center;
    color: rgb(168, 16, 16);
}

#bye {
    text-align: center;
}

h1 {
    font-size: 24px;
    color: #155475;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    color: #155475;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform:uppercase;
}

p {
    line-height: 1.6;
    margin: 10px 0;
}

a {
    color: #155475;
    text-decoration: none;
}

#form-section {
    margin-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input {
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #16a085;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #138a75;
}

#confirmation-message {
    margin-top: 20px;
    color: #27ae60;
    font-weight: bold;
}
