body {
    background-color: whitesmoke;
    font-family: "Courier Prime", monospace;
}

banner {
    background-color: wheat;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav {
  text-align: center;
  padding: 10px;
  border-bottom: 1px;
  border-bottom-style: dashed;
  margin-top: 20px;
}

a {
  text-decoration: none;
  margin: 20px;
  color: black;
}

a:hover {
  text-decoration: underline;
}

section {
    background-color: white;
    width: 70%;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
}

#omnie {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "h2 h2 h2"
    "img p p";
}

#omnie > h2 {
    grid-area: h2;
    text-align: center;
    font-size: 1,5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: linen;
    border-radius: 10px;
}
#omnie > img {
    grid-area: img;
}
#omnie > p {
    grid-area: p;
    align-self: center;
}

#projekty {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "h2 h2 h2";
}

#projekty > h2 {
    grid-area: h2;
    text-align: center;
    font-size: 1.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: linen;
    border-radius: 10px;
}