body {
  background: #FFF9E6;
  color: #9E6198;
  font-family: "Crimson Text", serif;
  font-size: 16px;
  text-align:center;
  letter-spacing: 1px;
  margin: 0;
}

a {
  color: #B07FAB;
  text-decoration: none;
}

a:hover {
 color:  #f4ca02;
 transition: 0.3s;
}

em  {
  .crimson-text-regular-italic {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: italic;
}
}

strong {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

h1  {
  font-family: "Fleur De Leah", cursive;
  font-size: 45px;
  color: #F7C200;
  margin:0;
}

h2  {
  font-size: 25px;
  color: #F7C200;
  margin:10px;
}

h3{
  font-size: 20px;
  color: #F7C200;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #f8f8f8;
}
body::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 3px;
}

#container {
  max-width: 660px;
  margin: 20px auto;
  padding: 0 10px;
}

.box {
	background: linear-gradient(rgba(255, 238, 184,.3), rgba(210, 182, 208,.3));
	background-color: (rgba (255, 246, 214, .1));
	background-repeat: repeat;
	border: 1px dotted #CB9F00;
	border-radius: 3px;
	text-align: left;
	padding: 10px;
  margin-bottom: 25px;
	height: 150px;
	overflow: auto;
}

header {
  text-align: center;
  padding: 10px 5px;
}

header img {
  max-width: 100%;
  height: auto;
}

.site-name {
  margin-top: 10px;
  font-family: "Fleur De Leah", cursive;
  font-size: 60px;
  letter-spacing: 3px;
  color: #F7C200;
}

.glow {
	text-shadow: rgba(255, 220, 92,0.9) 0px 0px 10px; 
}

.slogan {
  font:italic 12px Georgia, Arial;
  margin-top: 5px;
  color:#999;
}

nav li{
  display: inline-block;
  position: relative; 
  align-items: center;
  height: 2;
  line-height: 2; 
}

nav li a,nav li span{
  letter-spacing: 2px;
  display: inline-flex;
  padding: 4px 6px;
  margin-right: 4px;
  font-family: "Crimson Text", serif;
  font-style: italic;
  color:#9E6198;
  border-radius: 3px;
}

nav li a:hover,nav li span:hover{
  transition: 0.3s
}

.sub-nav{
  background:#FFF0B8;
  position:absolute;
  width: 180px; 
  z-index: 20;
}

.sub-nav li{
  display:block; 
  visibility:hidden; 
  overflow:hidden; 
  height: 0; 
  background: #FFF0B8;
  width: 100%;
  text-align:left;
}

nav li:hover .sub-nav li{
  visibility: visible;
  overflow: visible;
  height: 3em;
  line-height: 3em; 
  transition: 0.3s;
}

#content {
  display: flex;
  gap: 10px;
  border-top: 1px dotted #CB9F00;
  padding-top: 10px;
  text-align: center;
}

.sidebar {
    width: 150px;
    padding: 4px; 
}

.sidebar > div {
    margin-bottom: 8px;
}

.title {
  font-family: "Fleur De Leah", cursive;
  margin-bottom: 4px;
  color:#b9a588;
}

.divider {
  height: 0;
  border-bottom: 1px dotted #CB9F00;
  margin: 6px 0;
}

main {
  flex: 1;
  padding: 8px;
}

.main-title {
  color:#CB9F00;
  font: 20px 'UnifrakturCook';
  text-transform: lowercase;
  margin: 0 0 6px;
  letter-spacing: 2px;
  line-height: 18px;
}

footer {
  border-top: 1px dotted #CB9F00;
  text-align: center;
  padding: 22px 8px;
  font-size: 12px;
}

.gallery {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}


div.gallery {
    width: 100%;
    height: auto;
    transition:0.3s;
}

div.gallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  opacity: 0.8;
  transition:0.3s;
}

div.gallery img:hover {
  opacity: 1;
}

div.desc {
	padding: 10px;
	text-align: center;
}

* {
	box-sizing: border-box;
}

.responsive {
	padding: 0 6px;
	float: left;
	width: 24.99999%;
}

#floated{
    float: left;
    width: 150px;   
}

@media(max-width: 600px){
    #content {
        flex-direction: column;
        gap: 12px;
    }
    main {
        border-left: none;
        border-right: none;
        padding: 8px;
    }
    nav {
        font-size: 10px;
        padding: 6px 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    nav a {
        margin: 4px 0;
        width: 100%;
        justify-content: center;
    }
}