
body{
font-family: Trebuchet MS;
text-align: center;
background: #d9d9d9;
padding: 0;
margin:0;
}
header{
text-align: center;
}
a{
text-decoration: none;
color: black;
}

h1{
margin-bottom: 20px;
text-transform: uppercase;
color: black;
}

.series-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
}
.card{
background-color: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
text-decoration: none;
color: black;
width: 350px;
height: 500px;
transition: transform 0.3s;
}
.card:hover{
transform: scale(1.05);
}
.card img{
width: 100%;
height: 500px;
border-radius: 12px;
}
.card .text{
padding: 1rem;
}
footer{
background-color:#8b8c89;
font-size: 17px;
text-align: center;
bottom: 0;
padding: 17px;
color: white;
}
footer a{
color: white;
}