@font-face{
	font-family: 'glober-thin';
	src: url('Glober Thin Free.otf');
}

html, body
{
	margin: 0;
	padding: 0;
    height: 100vh;  /* Pełna wysokość ekranu */
    display: flex;
    justify-content: center;  /* Środek poziomo */
    align-items: center;      /* Środek pionowo */
	font-size: 100%;
	font: inherit;
}


body
{
   background-color:#ffffff;
   font-family: "glober-thin";
   font-weight: bold;
   font-size:52px;
   height:100%;
   cursor:default;
   max-width:100%;
   margin: 0 auto;
   text-align: center;
}

@keyframes blinkOpacity {
    0%, 100% { opacity: 1.0; }     /* Pełna widoczność */
    50%      { opacity: 0.2; }     /* 50% przezroczystości */
}

.coming-soon {
    animation: blinkOpacity 3s ease-in-out infinite;  /* 3s cykl, płynne */
}