@font-face {
    font-family: Bell MT Bold;
    src: url('Bell\ MT\ Bold.otf');
}


body {
    font-family: "EB Garamond", serif;
    font-size: 1.2em;
    background-image: url('images/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    cursor: url('cursors/MomoNormal.png'), auto;

}
a:hover, button:hover {
    cursor: url('cursors/MomoLink.png'), auto;
}

:active {
    cursor: url('cursors/MomoText.png'), auto;
}

p {
    padding: 20px;
    margin: 0;
}

#pageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-transform: uppercase;
    text-align: center;
    font-size: 3em;
    font-family: Bell MT Bold;
    color: white;
    filter: drop-shadow(1px 1px 0 #b988f5) drop-shadow(-1px 1px 0 #b988f5) drop-shadow(0 -1px 0 #b988f5) drop-shadow(1px 0 #b988f5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

h1 span {
    font-size: 1.5em;
}


h3 {
    text-align: center;
    text-decoration: 2px dotted underline;
    font-family: Bell MT Bold;
}

header img {
    width: 700px;
    z-index: -1;
    border-radius: 30px;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

aside {
    width: 200px;
    height: 320px;
    margin-right: 20px;
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

aside img {
    width: 150px;
    border-radius: 90px;
    margin-top: 20px;
    border: dotted 3px #675649;
}

aside h3 {
    margin: 0;
}

aside p {
    color: #675649;
    margin: 0;
    padding: 0 0 10px 10px;
    font-size: 0.8em;
    text-align: center;
}

aside p:nth-child(3) {
    color: black;
}

#mainContainer {
    width: 50%;
    display: flex;
    flex-direction: column;
}

aside,
#mainContainer {
    background-color: #ede1c6;
    background-image: url("https://www.transparenttextures.com/patterns/white-paperboard.png");
    box-shadow: 0 0 10px #a99281;
    border-radius: 20px;
}

h2 {
    font-family: Bell MT Bold;
    text-transform: uppercase;
    text-align: center;
    margin: 10px;
    background: linear-gradient(90deg, #80a8e6 0%, #b6d0f8 100%);
    border-radius: 20px;
    box-shadow: 0 0 5px #a99281;
}

h2::first-letter {
    font-size: 1.4em;
}

#mainContainer span {
    font-style: italic;
    font-weight: bold;
    color: #995fdb;
}

nav img {
    z-index: 0;
    position: absolute;
    width: 47%;
    padding: 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav li {
    z-index: 1;
}

li button {
    padding: 10px;
    margin: 40px;
    background-color: #e3d6b8;
    border-radius: 10px;
    border: none;
    font-size: 1.3em;
    color: #7b5d4a;
    text-transform: uppercase;
    font-family: "EB Garamond";
}

li button:hover {
    background-color: #7b5d4a;
    color: #e3d6b8;
}

.imageContainer {
    display: flex;
    flex-direction: row;
}

.imageContainer div {
    width: 50%;
    border: 3px dotted #675649;
    margin: 10px;
    border-radius: 20px;
    background-color: #fbf7ef;
    box-shadow: 0 0 5px #a99281;
}

.imageContainer div p {
    padding: 5px;
    text-align: center;
    font-size: 0.8em;
}

.imageContainer img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.galleryImages {
    display: flex;
    flex-direction: row;
}

.galleryImages img {
    border-radius: 20px;
    width: 50%;
    margin: 10px;
}