/* Default Formatting */

body {
  text-align: left;
  padding: 20px;
  font: 1em Helvetica Neue Light, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0 0 1rem 0.5rem;
}

h1,
h2,
h3 {
  font-weight: 100;
}

h3 {
  padding: 0.5rem;
}

.row {
  display: flex;
}
.column {
  flex: 50%;
}

/* End Formatting */

/** 
 * Mobile First Design
 *
 * Default to tablet (portrait) and small devices. 
 */
body {
  background-image: url("https://cdn.shopify.com/s/files/1/0656/0451/8124/files/Aureate-Land-Page-2.jpg?v=1682763098");
  background-repeat: no-repeat;
  background-size: contain;
	height: 1050px;
  color: white; /* Make the text colour light. */
}
a {
  color: white;
}

/**
 * Kick in tablet (landscape) & Laptop to larger 
 * devices only when needed. 
 */
@media (min-width: 1050px){
  body {
    background-image: url("https://cdn.shopify.com/s/files/1/0656/0451/8124/files/Aureate-Land-Page.jpg?v=1682763097");
    background-repeat: no-repeat;
    background-size: cover;
    height: 750px;
	width: 100vh;  
    color: black;
  }
  .column {
    /* Add a darkened background. */
    background-color: rgba(255, 255, 255, 0.5);
  }
  a {
    color: black;
    text-decoration: none;
    border-bottom: 2px solid black;
  }
  a:hover {
    color: gray;
    text-decoration: none;
    border: 2.5px solid grey;
  }
}
