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

@keyframes slidePageUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #393E46;
  color: #dcdbdb;
  animation: slidePageUp 0.5s ease-out forwards;
  opacity: 0;
  transform: stranslateY(50px);
  overflow-x: hidden;
  touch-action: pan-y;
}

/* HLAVICKA */
.header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222831;
  padding: 15px 30px;
  z-index: 1000;
}

.logo-center img {
  height: 50px;
  margin: 10px
}

.socials img {
  height: 50px;
  filter: brightness(0.9);
  transition: 0.3s;
  background-color: transparent;
  border: none;
}
.socials img:hover {
  filter: brightness(1.2);
}

.socials img:active {
  filter: brightness(0.7);
}

.about h2 {
  text-align: center;
  margin: 40px 20px 20px 20px;
  font-size: 2.5rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}
/* FOOTER */
footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background: #222831;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.footer-logos img {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-left, .footer-right {
  text-align: left;
  min-width: 250px;
}

footer h3 {
  margin-bottom: 8px;
}

footer p, footer a {
  font-size: 1rem;
  color: #dfdfdf;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.rights {
  text-align: center;
  background-color:#222831;
  padding-bottom: 10px;
  }