Hi all,
Having some issues with the background image pulling through to the index page after adding it to the CSS, any help would be greatly appreciated! Code below, issue is in the .service selector
strong text
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: black;
color: bisque;
}
header {
display: flex;
height: 100px;
border-bottom: 3px;
border-color: white;
width: 100%;
align-items: center;
justify-content: center;
}
.navbar {
display: flex;
align-items: center;
justify-content: center;
}
li {
padding: 5px;
list-style-type: none;
display: inline-block;
}
.header h1 {
text-decoration: underline;
padding: 0px 5px;
}
.service {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url(Resources\group.jpg);
padding-top: 35px;
height: 700px;
width: 1200px;
}
.service img {
height: 700px;
width: 1200px;
}
.location{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 700px;
width: 1600px;
}
.location img {
height: 200px;
width: 300px;
}
.images{
display: flex;
flex-direction: row;
justify-content: space-between;
width: 1400px;
}
.compass {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.team img{
height: 400px;
width: 300px;
}
.team {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
width: 1600px;
height: 700px;
}
.contact{
display: flex;
flex-direction: column;
align-items: center;
}