/* style.css */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

header {
    background-image: url('fairy-tail-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}
