@import url("https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background-image: url("./assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000000;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.side-ad {
  position: fixed;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 10;
}

.side-ad--left {
  left: 0;
}

.side-ad--right {
  right: 0;
}

.side-ad img {
  width: auto;
  height: 100%;
}

.mobile-banner {
  display: none;
}

.page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.header-banner {
  max-width: 1230px;
  width: 100%;
}

.main-content {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
}

#rows {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gorseller {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin: 1vw;
}

.logolar {
  width: 180px;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .page-header {
    margin-top: 120px;
  }

  .side-ad {
    display: none;
  }

  .mobile-banner {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 20;
  }

  .mobile-banner img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .gorseller {
    margin: 0;
    gap: 10px;
  }

  .logolar {
    width: 90px;
    margin: 3px;
    border-radius: 5px;
  }

  .header-banner {
    max-width: 200px;
  }
}
