
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}
/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}
/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}/* Balance text wrapping on headings */
/* h1, h2,
h3, h4 {
  text-wrap: balance;
} *//* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}/* Make images easier to work with */
img,
picture {   
  max-width: 100%;
  display: block;
}/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}body {
    background: white;
    font-family: 'Montserrat';
    padding-left: 5%;
    padding-right: 5%;
}.title {
    font-size: 20px;
    font-weight: bold;
}.nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline
}.nav > a {
    text-decoration: none;
}.scroll-to-posts {
    font-size: 16px;
    color: black;
    opacity: 0.7;
    font-weight: 400;
}.posting-form-title, .all-posts-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}.posting-form-subtitle, .description, .location, .phone-number { 
    font-size: 18px;
    font-weight: 400;
}.posting-form { 
    margin-top: 40px;
    border-radius: 4px;
    padding: 4%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgb(0 0 0 / 51%);
}.post-title-value, .location-value, .phone-number-value { 
    height: 40px;
}.post-description-value {
    min-width: 100%;
    height: 1in;
}.post-now {
    font-size: 20px;
    font-weight: bold;
    width: 200px;
    height: 52px;
    cursor: pointer;
    border-radius: 5px;
    background: black;
    color: white;
}.post-btn-section {
    place-self: center;
}textarea:not([rows]) {
    min-height: auto;
}.all-posts { 
    margin-top: 80px;
}.post-board > .title {
    font-size: 20px;
    font-weight: 500;
}.all-posts-title {
    margin-bottom: 25px;
}.post-board { 
    border: 1px black solid;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}.post-board > .description {
    color: rgba(65, 57, 57, 1);
}.post-board > div {
    display: flex;
    justify-content: space-between;
}.contact {
    color: rgba(41, 70, 255, 1);
    cursor: pointer;
}.time-posted {
    color: rgba(140, 139, 139, 1)
}
@media (max-width: 768px) { /* Phone */
 .post-now {
    font-size: 16px;
    font-weight: bold;
    width: 159px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
    background: black;
    color: white;
 }
 .post-board > div {
    flex-direction: column;
 }
}
