a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline; /* or none, or change color */
}
/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set base font and background */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  padding: 3rem;
    font-size: x-large;
}

/* Centered container */
.container {
  max-width: 100px;
  margin: 0 auto;
  text-align: center;
}

/* Heading styles */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Paragraph styles */
p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Navigation styles */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s ease;
    font-size: xx-large;
}

nav a:hover {
  color: #555555;
}

[data-css-preset] .container {
	text-align: center /*!text_center*/;
}

.gallery-type-justify .gallery-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* keeps them left-aligned */
  align-items: flex-start;
}

.gallery-type-justify .gallery-content .gallery-item {
  flex: 0 0 auto;       /* prevents resizing */
  width: 200px;         /* pick a fixed width */
  height: 200px;        /* pick a fixed height */
  margin: 5px;          /* spacing between images */
  overflow: hidden;     /* crops overflow */
}

.gallery-type-justify .gallery-content .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* makes images fill box without distortion */
}
