/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}

.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}


body, html {
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1.5rem;
	color: #FFF;
}

body {
	font-family: arial, sans-serif;
  background-color: #2e2e2e;
    /* width - height */
}

.header-body {
	text-align: center;
	position: relative;
	padding-top: 0px;
	background-image: none;
	height: 120px;
	border: 0;
	width: 100%
}

.title {
	font-size: 18px;
	font-style: italic;
	font-weight: 600;
	margin: 12px 0;
	letter-spacing: 0.5px;
}

#menu-R, #menu-L {
	display: inline-block;
	vertical-align: top;
}

#menu-L {
	text-align: left;
	padding-top: 0px;
  float: left;
  width: 30%;
	padding-left: 20px;
}

#menu-L p {
	padding-top: 0px;
  font-family: arial, sans-serif;
}

#menu-L h1 {
  font-family: "DM Serif Text", serif;
	padding: 0px;
	font-size: 45px;
}

#menu-R {
  padding-top: 25px;
  float: right;
  width: 20%;
	text-align: right;
	padding-right: 20px;
}

.header-body a {
	display: inline-block;
  margin: 0px 2px;
  font-family: arial, sans-serif;
  color: #FFF;
  text-decoration: none;
	font-size: 22px;
}

.header-body a:hover {
	display: inline-block;
  margin: 0px 2px;
  font-family: arial, sans-serif;
  color: #BBB;
  text-decoration: none;
}

.wrapper {
	width: 100%;
	margin: auto;
	padding: 0px 30px 24px 30px;
	box-sizing: border-box;
	text-align: center;
	border-radius: 5px;
	margin-bottom: 20px;
/*	padding-bottom: 60px; */
}

#grid {
    width: 85%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    gap: 30px;
    justify-content: space-between;
}

#grid img {
    max-width: 100%;
    max-height: 550px;
}

.grid-item img {
  max-width: 100%;
  height: auto;
}

.main {
	margin-bottom: 50px;
}

.about img {
	max-width: 100px !important;
	max-width: 100%;
	border-radius: 4px;
}

#about-L {
	vertical-align: middle;
  float: left;
  font-family: arial, sans-serif;
  text-align: center;
  max-width: 50%;
  margin-left: 10%;
  position: relative;
	font-size: 20px;
  height: 500px;
}

#about-R {
  display: block;
  float: right;
  width: 30%;
  max-width: 30%;
  margin-right: 10%;
	background-image: url("./img/about.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
  height: 500px;
  position: relative;
}

