* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000EE;
  color: #B9975A;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  width: 100%;
  background-color: #FFFFFF11;
}

header a {
  text-decoration: none;
}

header:hover {
  background-color: #FFFFFF15;
}

section {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem;
}

article {
  display: flex;
  flex-direction: column;
  margin: .5rem 2rem;
}

footer {
  width: 100%;
  background-color: #FFFFFF11;
  font-size: 1.2rem;
  line-height: 1.5;
}

footer section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer a {
  color: #B9975A;
}

#top {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

#logo {
  width: 200px;
  position: relative;
  left: 3rem;
  z-index: -1;
}

#title {
  flex-grow: 1;
}

div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

img {
  border-radius: 10px;
}

#welcome img {
  max-width: 14rem;
  height: 100%;
}

#about img {
  max-width: 12rem;
}

.post {
  border-left: 5px solid #E32C7EAA;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #FFFFFF11;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.post:nth-child(odd) {
  background-color: #FFFFFF08;
}

.post > div {
  background-color: #FFFFFF08;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  margin: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.post div div {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.post img {
  margin: 0.5rem;
}

h1, h3, h4 {
  line-height: 1.5;
}

h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #B9975A;
}

h2 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #BEB17D;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

h4 {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 5px 0;
  text-indent: 2rem;
}

em {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
}

a {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #E32C7E;
}

article:has(blockquote) {
  background-color: #FFFFFF11;
  padding: .8rem;
  border-radius: 10px;
  font-style: italic;
  text-align: left;
}

blockquote p::before {
  content: '\201C';
}

blockquote p::after {
  content: '\201D';
}

blockquote + p {
  text-align: right;
  font-style: normal;
}

article:has(>img) {
  background-color: #FFFFFF11;
  padding: .8rem;
  margin: 2rem 0;
  border-radius: 10px;
}

article:has(>img):hover {
  background-color: #FFFFFF20;
}

::selection {
  background-color: #E32C7E90;
}

.gallery div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4rem;
  margin: 2rem 0;
}

.gallery div a, .gallery div article {
  width: 22rem;
  justify-self: center;
  margin: 0;
}

.gallery img {
  margin: 10px;
}

.gallery div p {
  text-indent: 0;
}

.gallery p.price:before {
  content: "$";
}

.gallery p.sold {
  text-decoration: line-through;
}

.gallery p.sold:after {
  content: "SOLD";
  text-decoration: none;
  display: inline-block;
  position: relative;
  left: 7pt;
}

/* Responsive */

@media ( max-width: 800px) { #welcome img { display: none; } div:has(img) { flex-direction: column; } .gallery div { grid-template-columns: 1fr; row-gap: 4rem; margin: 2rem 0; } }
@media ( max-width: 600px) { html { font-size: 14px; } #logo { left: 0; } footer section { flex-direction: column; } }
@media ( max-width: 400px) { html { font-size: 12px; } }