:root {
  --primary-bg: #C89996;
  --secondary-bg: #916E6E;
  --white1: white;
  --white2: #F2F2F2;
  --white3: #EEEEEE;
  --black1: black;
  --black2: #190A07;
}

body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
}

h1 {
  font-size: 2.5em; /* 2.5 * 16 = 40px */
}

h2 {
  font-size: 1.875em; /* 1.875 * 16 = 30px */
}

h3 {
  font-size: 1.17em;
}

p {
  font-size: 1em; /* 1 * 16 = 16px */
  line-height: 1.5;
}

.paragraph {
  text-indent: 50px; /* Indent by 50 pixels */
}

.paragraph + .paragraph::before {
    content:"\a\a\a";
}

.main-content {
    flex-grow: 1; /* Pushes the footer to the bottom */
}

.content-column {
    box-sizing: border-box;
    max-width: 700px;
    width: calc(100% - 40px);
    
    margin: 0 auto; 
    
    padding: 20px;
    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 

    background-color: var(--white1);

    margin-top: 20px;

    border-radius: 20px;
    border-color: var(--black2);
    border-style: solid;
	border-width: 1.5px;
}

.content-column .highlight {
  background-color: var(--white3);
  display: inline-block; 
  padding: 3px;
}

.content-column .poetry {
    white-space: pre;
}


.content-column .button-row {
    display: inline-flex; 
    
    align-items: center; 
    gap: max(5%, 40px);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.content-column img {
   height: 100%;
   width: 100%;
}

.content-column form {
    background-color: transparent;
    padding: 0px;
    height: 30px;
    width: clamp(30px, 12.9%, 90px);
}

.content-column button {
    background-color: var(--primary-bg);
    color: var(--white1);
    padding: 0;
    margin: 0;
    border-radius: 20px;
    border-color: var(--black2);
    border-style: solid;
	border-width: 1.5px;
    height: 30px;
    width: clamp(30px, 12.9%, 90px);

    font-size: 16px;
	font-weight: 600;
}

.content-column button:hover {
    color: var(--white2);
    background-color: var(--secondary-bg);
}

.content-header {
    background-color: var(--white1);
    min-height: 100px;
    

    display: flex; 
    
    align-items: center; 
    gap: min(20px, 7%);
    justify-content: space-around;

    padding-left: min(100px, 5%);
    padding-right: 25%;
    padding-top: 0;
    padding-bottom: 0;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 

    border-color: var(--black2);
    border-style: solid;
	border-width: 1.5px;
}

.content-header h2 {
    margin: 0;
    padding: 0;
}

@media (max-width: 680px) {
    .content-header h2 {
        font-size: 4.41vw;
    }

    .content-header h3 {
        font-size: 2.75vw;
    }

}

.content-header a {
    color: inherit;
    text-decoration: none;
}

.content-header a:hover {
    text-decoration: underline;
}

.link-cluster {
    justify-content: center;
}

.link-cluster a {
    text-decoration: none;
}

.link-cluster a:not(:last-child)::after {
    content:" • ";
    color: var(--black1);
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}