html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffe6f0;
  color: #880e4f;
  display: flex;
  flex-direction: column;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

h1, h2, .navbar-brand {
  font-family: 'Pacifico', cursive;
  color: #ad1457 !important;
}

body.index {
  background-color: #ffe6f0;
}

body.o_mnie {
  background-color: #fff0f5;
}

body.umiejetnosci {
  background-color: #fcebf2;
}

.navbar {
  background-color: #f8bbd0 !important;
}

.nav-link {
  color: #880e4f !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ad1457 !important;
}

main img {
  border: 4px solid #f8bbd0;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}

.contact-info {
  font-size: 1.1rem;
  margin: 0;
  color: #880e4f;
}

.social-icons a {
  color: #880e4f;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ad1457;
}

a {
  color: #d81b60;
  text-decoration: none;
}

a:hover {
  color: #ad1457;
  text-decoration: underline;
}

.custom-footer {
  background-color: #f8bbd0;
  color: #880e4f;
  font-weight: bold;
  width: 100%;
  border-top: 1px solid #e0a3b0;
  border-radius: 0;
  margin-top: auto;
  text-align: center;
  padding: 1rem;
}

main, section {
  padding: 20px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .navbar-nav {
    text-align: center;
  }

  main, section {
    padding: 10px;
  }

  main img {
    width: 150px;
  }
}