:root {
  --clr-accent-300: #787bb2;
  --clr-accent-400: #5a5d9d;
  --clr-accent-500: #474a7d;

  --clr-neutral-100: #ffffff;
  --clr-neutral-600: #2a2a2a;
  --clr-neutral-900: #111111;
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  /* display: block; */
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
body {
  background-color: #f0e8dc;
  color: #000;
  font-family: "Merriweather", serif;
}
.container {
  /* border: 1px solid red; */
  min-height: 100dvh;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  place-content: center;
}

.farm-header {
  padding: 2rem 0;
}
.cow-img {
  width: 100px;
  margin: 0;
  /* border: 1px solid red; */
}
h1 {
  color: var(--clr-neutral-900);
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  text-transform: lowercase;
  margin: 0;
  padding: .9;
  line-height:.8;
 
  /* border: 1px solid red; */
}
p {
  font-size: 2rem;
  margin:10px 0 0 0;
}
.subtitle {
  color: var(--clr-accent-300);
  font-size: 0.65rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .subtitle {
    font-size: 1rem;
  }
  .cow-img{
      width:200px;
  }
}
.card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.address {
  margin-top: 1rem;
}
