/* Resetowanie domyślnych marginesów i paddingów */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  
}

/* Stylizacja tła i tekstu */
body {
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}


/* header */


/*== stary nav ==*/


/* Sekcja hero */
.description {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 2rem;
  outline: 2px solid #ff5733; /* Pomarańczowy kontur */
}

.description h1 {
  font-size: 2.5rem;
}

.description p {
  font-size: 1.2rem;
}

/* Sekcja o nas */
.about {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  outline: 2px solid #ff5733; /* Pomarańczowy kontur */
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1rem;
}

/* Sekcja usług */
.services {
  background-color: #f4f4f4;
  padding: 2rem;
  text-align: center;
  outline: 2px solid #ff5733; /* Pomarańczowy kontur */
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services ul {
  list-style: none;
}

.services li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Sekcja kontakt */
.contact {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  outline: 2px solid #ff5733; /* Pomarańczowy kontur */
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1rem;
}

/* Stopka */
/* footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  outline: 2px solid #ff5733; /* Pomarańczowy kontur 
} */


@keyframes slideUpGrow {
  from {
    opacity: 0.7;
    transform: translateY(100px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.block {
  animation: slideUpGrow 0.7s cubic-bezier(0.7, 0.1, 0.3, 1) both;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  will-change: opacity, transform;
}
