/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up some basic styles */
body {
  /*   font-family: 'Helvetica Neue', Arial, sans-serif; */
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
    font-size: 17px; /* Adjust this size as needed */
    font-weight: normal; /* Ensures normal font weight across the page */
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    padding: 5px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header h1, header nav a, .content p, .links a {
    font-size: inherit; /* Inherits the font size from the body */
    font-weight: inherit; /* Inherits the font weight from the body */
    color: inherit; /* Inherits the text color from the body */
}

header nav a {
    text-decoration: none;
}

.main {
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
}

.content p {
    margin: 10px 0; /* !this is the line height I was looking for! */
}

.links {
    text-align: left; /* Aligns the links to the left */
    margin-top: 10px;
    color: gray
}

.links a {
    text-decoration: none;
    margin-right: 10px; /* Adds space between the links */
}

.container {
    max-width: 600px; /* Set a max-width for desktop viewing */
    margin: 0 auto; /* Centers the container */
    padding: 20px;
}

.content .harmaa {
    color: grey
}

article * {
    line-height: 1.5; /* Adjust this value as needed */
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
}

.harmaa a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: grey; /* or whatever color your .harmaa class is supposed to be */
}

.harmaa, .harmaa a {
    color: grey; /* Replace 'grey' with the actual color you want */
    /* Other styles for .harmaa class */
}


@media (min-width: 600px) {
    body {
        background-color: #000000; /* Or any other color or image for the surrounding space */
    }

