* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

html {
  font-family: "Inter", serif;
  color: #fff;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #121212;
  cursor: pointer;
  transition: transform 0.3s ease;

  :hover {
    transform: scale(1.01);
  }
}

i {
  font-size: 1.5rem;
}

ul {
  list-style: none;
}

body {
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover; /* önemli kısım */
  background-position: top center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;

  span {
    font-size: 36px;
    font-weight: 900;
    transition: transform 0.3s ease;
  }
}

.osko-p {
  margin: 12px 0px 30px 0px;
  font-size: 24px;
}

.afis {
  min-width: 100px;
  max-width: 600px;
  width: 100%;
  margin: 0px 0px 30px 0px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 2px;
  background-color: rgb(241, 240, 240);
  border: 1px solid #1212120e;
  box-shadow: #12121213 1px 3px 40px;
  border-radius: 6px;
  transition: transform 0.3s ease;
  font-weight: 500;

  img {
    width: 100%;
    border-radius: 5px;
  }

  span {
    font-size: 22px;
  }
}

.link-container:hover {
  padding: 6px;
  border: none;
  box-shadow: none;
  animation: moveBackground 1s ease-in-out infinite alternate;
  background-color: #8937fc;
  background-image: radial-gradient(
      at 63% 54%,
      rgb(255, 6, 2) 0px,
      transparent 50%
    ),
    radial-gradient(at 39% 10%, rgb(255, 112, 23) 0px, transparent 50%),
    radial-gradient(at 52% 76%, rgb(198, 48, 248) 0px, transparent 50%),
    radial-gradient(at 71% 91%, rgb(45, 103, 252) 0px, transparent 50%),
    radial-gradient(at 65% 69%, rgb(45, 255, 129) 0px, transparent 50%),
    radial-gradient(at 90% 51%, rgb(255, 80, 45) 0px, transparent 50%),
    radial-gradient(at 84% 76%, rgb(250, 65, 83) 0px, transparent 50%);
  background-size: 200% 200%;
  background-position: center;
  font-weight: 700;
}

.card-container {
  max-width: 620px;
}

.osko-card {
  margin-bottom: 8px;
}

@keyframes moveBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 1095 altı için özel düzenleme (Mobil) */
@media (max-width: 1200px) {
}

/* 736 altı için özel düzenleme (Mobil) */
@media (max-width: 767px) {

  body {

    background-color:hsla(240,42%,19%,1);
    background-image:
    radial-gradient(at 78% 55%, rgb(144, 6, 224) 0px, transparent 50%),
    radial-gradient(at 76% 71%, rgb(238, 71, 56) 0px, transparent 50%);
    background-size: 200% 200%;
    background-position: center;
  }
}

/* 565px altı için özel düzenleme (Mobil) */
@media (max-width: 565px) {
}
