/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1e52e2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Kart Tasarımı */
.card {
    width: 300px;
    background-color: rgb(153, 217, 234);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0565ca;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background-color: #023872;
}
