*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;
background:#f4f7fb;
color:#333;
line-height:1.8;

}

header{

background:#0d6efd;
color:white;
padding:60px 20px;
text-align:center;

}

header p{

max-width:800px;
margin:20px auto;

}

main{

max-width:1100px;
margin:auto;
padding:40px 20px;

}

.card{

background:white;
padding:25px;
margin-bottom:30px;
border-radius:12px;
box-shadow:0 5px 18px rgba(0,0,0,.08);
transition:.3s;

}

.card:hover{

transform:translateY(-5px);

}

.card h2{

margin-bottom:15px;

}

.card a{

text-decoration:none;
color:#0d6efd;
font-weight:bold;

}

.card a:hover{

text-decoration:underline;

}

ul{

margin:20px;

}

.rating{

font-size:22px;
color:#f4b400;
font-weight:bold;

}

footer{

background:#222;
color:white;
text-align:center;
padding:30px;
margin-top:40px;

}

@media(max-width:768px){

header h1{

font-size:30px;

}

}
