body {
    background: radial-gradient(circle, #73602f, #000000);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    overflow-y: hidden;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.site {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#site-content {
    margin-top: -50px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
    border: 3px solid #c9a345;
    border-top-color: #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.logo {
    width: 180px;
    height: 255px;
    aspect-ratio: 1 / 1;
    background-image: url(../resim/teras.png);
    background-size: cover;
    background-position: center;
}
.buton {
    
    display: flex;
    width: 240px;
    height: 60px;
    background-image: url(../resim/buton.png?00);
    background-size: cover;
    background-position: center;
    margin-top: 30px;
    
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
.ust {
    width: 180px;
    aspect-ratio: 1 / 0.8;
    background-image: url(../resim/ust.svg?0);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
}

.alt {
width: 301px;
    height: 53px;
    background-image: url(../resim/alt.png?0);
    background-size: cover;
    background-position: center;
    position: fixed;
    bottom: 30px;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../resim/bg.png?0);
    width: 100%;
    height: 100%;
    background-size: contain;
    z-index: 0;
}