/* Resetowanie marginesów i paddingów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-shape {
    clip-path: polygon(0% 0%, 100% 0%, 96.1% 89.8%, 7.4% 100%);
    text-transform: uppercase; /* Zamiana tekstu na wielkie litery */
    width: 240px; /* Szerokość */
    height: 57px; /* Wysokość */
    display: flex; /* Flexbox */
      font-family: "Barlow Condensed", sans-serif;

    font-size: 20px;
    font-weight: 500;
    justify-content: center; /* Wyrównanie w poziomie */
    align-items: center; /* Wyrównanie w pionie */
    background-color: #FFDD0E; /* Tło */
    color: #0e3083; /* Kolor tekstu */
    text-decoration: none;
}


body {
  font-family: Arial, sans-serif;
  color: #ffffff;
  background-color: #0e3083;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 800px;
  padding: 20px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 100px;
  height: auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  max-width: 500px;
  font-style: normal;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
}

.placeholder {
  width: 100%;
  height: auto;
  border: 2px solid #ffffff;
  border-radius: 10px;
}
