/* 
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #7b4397, #dc2430);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
} 
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('en/images/bg2.jpg') no-repeat center center fixed; /* Arka plan görseli */
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
img{
    margin-bottom:20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: space-between;
}

.btn {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background-color: #fff;
  color: #dc2430;
}

.btn-turkish {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-english {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }
}
