.sol-yazi{
    position: fixed;
    left: 150px;
    top: 35%;
    
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    
    font-size: 40px;
    color: white;
}
.sag-yazi{
    position: fixed;
    right: 150px;
    top: 35%;

    writing-mode: vertical-lr;

    font-size: 40px;
    color: white;
}
body {
  background: linear-gradient(to right, red, blue);
}
.container1 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.container2 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.container3 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.container .card {
  position: relative;
  width: 500px;
  height: 230px;
  padding: 15px;
  background: linear-gradient(60deg, #151516 0%, #1d2229 100%);
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.container .card h2 {
  z-index: 99;
  position: absolute;
  bottom: 25px;
  right: 130px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
  transition: 0.2s ease;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.container .card a {
  z-index: 99;
  position: absolute;
  bottom: 30px;
  right: 130px;
  width: 150px;
  color: #fff;
  opacity: 0;
  font-size: 12px;
  text-align: right;
  letter-spacing: 1px;
  transition: 0.2s ease;
}
.container .card span {
  z-index: 99;
  position: absolute;
  top: 60px;
  right: 35px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  writing-mode: vertical-lr;
  transition: 0.2s ease;
  opacity: 0.7;
}
.container .card .pic {
  z-index: 100;
  width: 395px;
  height: 200px;
  background-size: cover;
  border-radius: 12px;
  filter: grayscale(100%);
  transition: 0.3s ease;
}
.container .card button {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  opacity: 1;
  transition: 0.3s ease;
}
.card:hover button {
  transform: scale(16.5);
  opacity: 0.5;
}
 .card:hover h2 {
  bottom: 80px;
  right: 50px;
}
.card:hover a {
  opacity: 1;
  right: 60px;
}
.card:hover span {
  opacity: 0;
  top: 80px;
}
.card1 .pic  {
  background-image: url(Nitro_Wallpaper_03_3840x2400.jpg);
  transition: 0.3s ease;
}
.card1 button {
  background-color: purple;
}
.card:hover .pic {
  filter: grayscale(0);
  width: 470px;
}
.card2 .pic  {
  background-image: url(DSCF3099.jpg);
  transition: 0.3s ease;
}
.card2 button {
  background-color: #4526c3
}
.card3 .pic {
  background-image: url(png102547.png);
  transition: 0.3s ease;
}
.card3 button {
  background-color: navy;
}
a{
    text-decoration: none;
}