* {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 80px;
  background-image: url(./masl3op.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav a {
  text-decoration: none;
  list-style: none;
  color: black;
}

p {
  font-size: 25px;
  font-style: italic;
}
.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  grid-template-areas:
    "opiss op22"
    "op33 op44";
  gap: 20px;
  padding: 25px;
}
div .opis {
  grid-area: opiss;
}

div .op2 {
  grid-area: op22;
}
div .op3 {
  grid-area: op33;
}
div .op4 {
  grid-area: op44;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  height: 100px;
  background-image: url(./masl3op.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
h1 {
  font-family: "Pinyon Script", cursive;
  font-size: 50px;
  font-weight: lighter;
}
