I'm trying to add an image for a logo on top of a background image.
The background image resizes but the logo doesn't.
Any tips as to where I've gone wrong?
Thanks
<body>
<div class="background">
<img src="Images/logoPlain.png" class="img-fluid" alt="logo">
</div>
.background
{
background-image: url('Images/architecture.jpg');
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}