/* Resetowanie styli */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #392828;
  padding: 15px 10px 1px;
  transition: all 369ms ease-in-out;
}

nav ul {
  list-style: none;
  display: flex;
  transition: all 369ms ease-in-out;
}

nav ul li {
  margin: 0 10px;
  transition: all 369ms ease-in-out;
}

nav ul li:last-child {
  margin-right: 0;
  transition: all 369ms ease-in-out;
}

nav ul li a {
  box-shadow: inset 0 0 0 0 #0cd8a2;
  text-decoration: none;
  color: #b7b7b7;
  font-weight: bold;
  padding: 0px;
  border-radius: 5%;
  transition: all 800ms ease-out;
}

nav ul li a:hover {
  text-decoration: none;
  color: #ffffff;
  padding-bottom: 15px;
  transition: all 369ms ease-in-out;
}

/* Styl rozwijanego menu */

nav ul ul {
  display: none;
  position: absolute;
  background-color: #333333;
  padding: 10px;
  box-shadow: 0px 8px 16px 0px rgba(255, 255, 255, 0.21);
  transition: all 369ms ease-in-out;
}

nav ul li:hover > ul {
  display: block;
}

nav ul ul li {
  display: block;
  margin: 5px 0;
  transition: all 800ms ease-out;
}

nav ul ul li a {
  transition: all 800ms ease-out;
  font-weight: normal;
  padding-top: 10px;
}


body {
  font-family: Arial, sans-serif;
}

.header {
  background-color: #21D4FD;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(37,145,251,0.98) 0.1%, rgba(0,7,128,1) 99.8% );
  color: white;
  text-align: center;
  padding: 20px;
}

.header h1 {
  font-size: 40px;
  margin: 0;
}

.header p {
  font-size: 20px;
}



.main {
  background-image: radial-gradient( circle farthest-corner at 1.2% 1%, rgb(23, 55, 116) 0%, rgb(10, 34, 150) 50.3%, rgb(2, 8, 46) 88.8%);
  padding: 40px 40px 40px;
}

.main h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 30px;
  color: white;
  font-weight: bold;
}

.main p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.discontinued-banner {
  background-color: #e74c3c;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 5px;
}

.discontinued-banner p {
  margin: 0;
}

.footer {
  /*background:  linear-gradient(0deg, rgba(60, 74, 75, 0.5) 100%, rgba(112, 114, 120, 0.5) 100%);*/
  color: #333;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  margin-top: 200px;
  font-weight: bold;
}
.logo {
  border-radius: 0%;
}

.image {
  margin-top: -30px;
}

.main p.discontinued {
  color: red;
  font-weight: bold;
}