:root {
  --pageGrey: #212121;
  --lightBlue: #acc0ce;
  --pagePurple: #946E83;
  --pagePink: #fff0fb;
  --pageYellow: #fadf72;
  
  --darkBlue: #42565d;
  --pageGreen: #5f9774;
  --lightGreen: #8ed29c;
  --shadowBlue: #edfff4;
  --grey: #a2a2a2;
}

body {
  margin: 0;
  padding: 0;
}
.background {
  height: 100vh;
  background: url(bgSm.jpg);
  background-position: bottom left;
  border-image-width: 100%;
  animation: driving 15s linear 3;
}
@keyframes driving {
  from {background-position: bottom left;}
  to {background-position: bottom right;}
}
.boat {
  position: absolute;
  left: 300px;
  bottom: 20px;
  width: 200px;
  z-index: 2;
}