*, html, body {
    padding: 0;
    margin: 0;
    background-color: rgb(243, 243, 234);
    color: rgb(0, 0, 9);
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    width: 1200px;
}

td {
    border: 1px solid black;
}

.w-15 {
    width: 15%;
}

.header {
    padding: 30px 0;
    text-align: center;
    font-size: 32px;
    background-color: cadetblue;
}

.header > h1 {
    background-color: cadetblue;
}

.nav {
    padding: 15px;
}

.nav > ul {
    padding-left: 20px;
}

.nav, .nav > h3, .nav > ul, .nav > ul > li > a, .nav > ul > li {
    background-color: burlywood;
}

.nav > ul > li {
    margin: 4px 0;
}

.nav > ul > li > a {
    transition: all;
    transition-duration: 200ms;
    border-bottom: 1px solid transparent;
}

.nav > ul > li > a:hover {
    color: rgb(20, 20, 35);
    border-bottom: 1px solid black;
}

a {
    text-decoration: none;
}

.h-static {
    height: 740px;
}

.footer {
    padding: 15px;
}

.footer > ul {
    padding-left: 20px;
}

.footer, .footer > ul, .footer > ul > li, .footer > ul > li > b, .footer > ul > li > a {
    background-color: lightskyblue;
}

.footer > ul > li > a {
    color: #6666dd;
}

.photo-hero {
    width: 200px;
    padding: 10px;
}

.photo-hero > img {
    width: 200px;
    aspect-ratio: 1;
    border-radius: 15px;
}

.photo-hero > p {
    font-family: 'Times New Roman', Times, serif;
}

.content {
    display: block;
    padding: 15px;
    height: 710px;
}

.content > p {
    font-size: 20px;
    padding: 4px 0;
}

.tlo {
    width: 100%;
    height: 500px;
    background-image: url('wielcypolacy.jpeg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;

}