html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Quicksand", Arial, sans-serif;

}


/* Arka plan (blur burada) */
.background {
    position: fixed;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/background.png");
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    transform: scale(1.05); /* blur kenar boşluklarını gizler */
    z-index: -1
}

.center-logo{
  max-width: 100%;
  height: auto;
  transform: translateY(-80px); /* 10px yukarı */
}

/* Overlay (rgba renk burada) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(78, 78, 78);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(66, 66, 66);
    z-index: -10;
}

/* Yazı örneği */
.overlay h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: auto;
  left: center;
  font-size: 5rem;
  color: white;
}

.coming-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5;
  font-size: 3rem;
  letter-spacing: 11px;
  color: white;
  margin: 0;
}

/* Nokta animasyonu */
.dots::after{
  content: "";
  display: inline-block;
  width: 1.5em; /* sabit genişlik (yazı kaymasın) */
  text-align: left;
  animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
  0%   { content: ""; }
  25%  { content: "!"; }
  50%  { content: "!!"; }
  75%  { content: "!!!"; }
  100% { content: ""; }
}

.coming-text{
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
