* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    background-image: url('/czosnek.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Sidebar */
.sidebar {
    width: 240px;
    background: #1f2937;
    color: white;
    padding: 30px 20px;
    min-height: 100vh;
}

.sidebar h2 {
    margin-bottom: 25px;
    text-align: center;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 0;
    transition: 0.2s;
}

.sidebar a:hover {
    color: #60a5fa;
}


/* Main */
.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}


.card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    text-align: center;
    max-width: 500px;
    width: 100%;
}


.card img {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}


.card h1 {
    margin-bottom: 20px;
}


.contact {
    margin-top: 25px;
    text-align: left;
}


.contact h2 {
    margin-bottom: 15px;
}


.contact p {
    margin: 8px 0;
}