body {
  font-family: 'Roboto', sans-serif;
  background-color: #3862ab; /* Daha koyu bir arka plan rengi */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  padding: 30px;
  background-color: #3862ab;
  color: white;
  font-weight: 500;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
  border: 0px;
  /* box-shadow: 0 0 15px 5px rgba(0, 120, 255, 0.3); */
}

.card img {
  width: 150px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}

a {
  color: white; /* Bağlantı rengini beyaz yap */
  text-decoration: none; /* Bağlantı alt çizgisini kaldır */
  transition: color 0.3s ease; /* Renk değişimine geçiş efekti ekle */
}

a:hover {
  color: #eee; /* Hover durumunda koyu beyaz renk */
    text-decoration: none;
}


