body{
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.navbar{
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hero{
    height: 90vh;

    background:
    linear-gradient(rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)),
    url('../images/hospital.jpg');

    background-size: cover;
    background-position: center;
}

.hero h1{
    font-size: 60px;
    font-weight: bold;
}

.card{
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover{
    transform: scale(1.05);
}

footer{
    margin-top: 50px;
}