@import url(global.css);
@import url(color.css);
@import url(typography.css);

#body {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  padding: 80px;
}
#header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}

#scotland {
  width: 100%;
  height: 100%;
  background-image: url(photography/coastland/rhum-16by9.jpeg);
  background-size: cover;
  background-position: bottom;
  padding: 40px;
  border-radius: 8px;
  align-content: end;
}
#scotland:hover {
  text-decoration: underline;
  color: var(--color-grey-100);
}






@media (max-width: 1440px) {
  #body {
    gap: 40px;
  }
}



@media (max-width: 1024px) {
  #body {
    padding: 56px;
  }
}



@media (max-width: 768px) {
  #body {
    padding: 40px;
  }
}



@media (max-width: 550px) {
  #body {
    padding: 24px;
  }
  #scotland {
    padding: 24px;
  }
}