body {
    background: radial-gradient(circle, #ff8255, #c44415);
    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;
}


#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 #ffc1ab;
    border-top-color: #bd2d00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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


.logo {
    width: 220px;
    aspect-ratio: 1 / 1;
    background-image: url(/resim/burgerna.png);
    background-size: cover;
    background-position: center;
}
.buton {
    
    display: flex;
    width: 260px;
    height: 66px;
    background-image: url(/resim/buton.png);
    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.9;
    background-image: url(/resim/ust.svg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
}

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