html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: black;
}

.container {
    width: 960px;
    margin: 0 auto;
}

nav {
    background-color: #2B2B2B;
}

h1 {
  font-size: 36px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* NAWIGACJO - jeżeli masz child ANCHOR to to są jego style */
/*
 nav > a {
    font-weight: 600;
    text-decoration: none;
} */



.nav-logo {
    font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 25%;
}

.nav-links a {
  transition: 0.5s all;
}

.nav-links a:hover {
  transform: scale(1.1);
}

.landing-page {
  width: 100vw;
  height: calc(100vh - 70px);
  background-image: url('mdelektro-baner-120x65.jpg');
  background-position: center;
  background-size: cover;
}

.landing-page-shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.landing-page-shadow .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.landing-page-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 25%;
  align-items: flex-start;
  color: white;
}



.landing-page-text h2, .landing-page-text button {
  font-size: 24px;
}

.landing-page-text button {
  background: none;
  padding: 5px 10px;
  border: 3px solid white;
  border-radius: 14px;
  color: white;
  font-size: 16px;
  transition: 1s all;
  cursor: pointer;
}

.landing-page-text button:hover {
  background-color: white;
  color: black;
}

.offer {
  padding: 5% 0;
  background-color: black;
  color: white;
}

.offer h1 {
  margin-bottom: 50px;
}

.offer h2 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.offer h3 {
  font-size: 12px;
  color: white;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
}

.offer-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 30%;
  height: 150px;
  margin-right: 5%;
  margin-bottom: 5%;
  background-color: #7b668d;
}

.offer-box:nth-of-type(3n) {
  margin-right: 0;
}

/* Footer container settings on top of this file */

footer {
  background-color: white;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  text-align: center;
}

footer a {
  color: black;
  text-decoration: none;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;

}

.footer-contact {
  display: flex;
  flex-direction: column;
}