@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.wrapper {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
}

img {
  width: 100%;
  object-fit: cover;
}

.header {
  padding: 20px 0;
}
.header h1 {
  font-weight: 300;
}

/* slider */
.slider {
  background-image: url('./Newcastle-House-Cleaners.jpg');
  background-position: top left;
  height: 350px;
  padding: 5px;
  margin-bottom: 25px;
}

.slider__img {
  height: 100%;
  border: 3px solid #586c94;
  display: block;
  margin: 0 auto;
}

h2,
h3 {
  margin: 18px 0;
  font-weight: 700;
  color: #323336;
}

p {
  margin: 16px 0;
  font-size: 14px;
}

.link {
  transition: all 0.2s;
}

.link:hover {
  color: rgb(63, 210, 26);
}

.footer {
  margin-top: 50px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bg {
  height: 100px;
  position: absolute;
  z-index: -1;
  width: 100%;
  display: block;
}

.footer p {
  color: white;
}
