h1 {
    font-family: 'Verdana', sans-serif;
    font-size: 28px; /* Large heading */
    margin-left: 20px;
}

h2 {
    font-family: 'Verdana', sans-serif;
    font-size: 20px; /* Large heading */
    margin-left: 20px;
}

p {
    font-family: 'Verdana', sans-serif;
    font-size: 16px; /* Standard paragraph text size */
    margin-left: 20px;
}

ul {
    font-family: 'Verdana', sans-serif;
    font-size: 16px; /* Standard paragraph text size */
    margin-left: 20px;
}

.small-text p {
    font-size: 12px; /* Smaller text for specific elements */
    margin-left: 20px;
}

img {
    width: 300px;  /* Set a default width for all images */
    height: auto;  /* Maintain aspect ratio */
    border: 0px solid black;  /* Add a black border around all images */
    border-radius: 0px;  /* Rounded corners */
    margin-left: 20px;
}
/* styles.css */
a {
    text-decoration: none; /* Removes underline */
    color: black;          /* Changes the link color (you can choose any color) */
}

/* Optional: Change link color when hovered */
a:hover {
    color: darkorange; /* Set the hover color (change to any color you prefer) */
}

hr {
    border: none;
    border-top: 0px solid #000;  /* Creates a thick solid line */
    margin: 40px 0;              /* Adds vertical space around the divider */
}

.responsive-container {
            width: 80%;  /* Fluid width */
            max-width: 600px;
            margin: 0 auto;
            border: 0px solid #000;
            padding: 0px;
        }


.text-container {
            margin-right: 40px; /* Optional margin for spacing */
            max-width: 500px;
        }
.pinterest-board-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 20px;  /* Adjust this value to move the board down */
        }
