:root {
  --background-color: #bee4f9;
  --text-color: #ffffff;
}

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

body, html {
  height: 100%;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: system-ui, sans-serif;


}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  font-size:32px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  line-height: 1.4;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  max-width: 80%;
  height: auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
} 
img { margin-bottom: 20px; }
.b20 { margin-bottom: 40px; }
.l20 { margin-left: 20% }
.left { text-align: left !important; }
.right { text-align: right; }
.podpis { 
  align-self: flex-end; 

  margin-right: 20px; 
  font-size: 22px; 
  line-height: 1.2;
  text-align: right;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 900;

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