body {
  margin: 0;
  padding: 0;
}

@keyframes sahneye {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
@keyframes sahneDisina {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
.main {
  transform: translate(50px);
  width: 50vh;
  height: 50vh;
  border: 1px solid #333;
  margin: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #333;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
}

.main .slide {
  width: 100%;
  height: 100%;
  background-color: silver;
  position: absolute;
  left: 100%;
  top: 0;
}

.main .slide img {
  width: 100%;
  height: 100%;
}

img {
  display: inherit;
  width: 50vh;
  height: 50vh;
}

.baslik {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

.hayati {
  margin: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #333;
  width: 70vh;
  font-size: 18px;
  font-weight: bold;
  transform: translate(100%, -470px);
  box-shadow: 0 0 30px #333;
  border-radius: 0.5rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: goldenrod;
}
ul > li {
  position: relative;
}
ul > li > a {
  display: block;
  padding: 0.5rem;
  background-color: goldenrod;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-right: 1px solid #333;
  font-family: "Times New Roman", Times, serif;
}
ul > li > a:hover {
  background-color: #333;
  color: goldenrod;
}
ul > li > a:target {
  display: block;
}
ul > li:last-child > a {
  border-right: none;
}

div.katalog {
  width: 72%;
  height: auto;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 1px solid #333;
  transform: translate(200px, -350px);
  border-radius: 0.5rem;
  box-shadow: 0 0 30px #333;
}
div.katalog > .slide2 > img {
  width: 150px;
  height: 200px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #333;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px #333;
}
div.katalog > .slide2:hover > img {
  cursor: pointer;
  margin: 10px;
  box-sizing: border-box;
}

.buton {
  width: 200px;
  margin: 0;
  padding: 0;
  display: flex;
  transform: translate(800px, -300px);
}
.buton > a {
  width: 200px;
  height: auto;
  margin: 0.5rem;
  padding: 0.5rem;
  font-size: 18px;
  background-color: goldenrod;
  color: #333;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
}

@keyframes slideUp {
  0% {
    transform: translateY(85%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.rubailer {
  width: 50%;
  height: 80vh;
  margin: 1rem auto;
  border: 2px solid #333;
  padding: 20px;
  overflow: hidden;
  position: relative;
  display: none;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  transform: translateY(-250px);
}
.rubailer > .rubai-1 {
  position: absolute;
  width: 100%;
  animation: slideUp 30s linear infinite;
}

.rubailer:target {
  display: block;
}/*# sourceMappingURL=main.css.map */