/* style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f7edf9;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1, h2 {
  color: #000;
}

input, select, button {
  padding: 10px;
  margin: 10px 0;
  width: 250px;
  border: 2px solid purple;
  border-radius: 10px;
  font-size: 14px;
}

button {
  background-color: #f5c400;
  color: #4b0082;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #ffda47;
}

.hidden {
  display: none;
}

#splash {
  background-color: #4b0082;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mascot {
  width: 150px;
  animation: float 2s infinite alternate;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}

/* Üst sağa zarf ikonu */
#messageIcon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Kartlar için */
.card {
  background: white;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  margin: 10px auto;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 8px;
}