:root {
  --tan: #f9f7f5;
  --darktan: #f1ebe7;
  --darkertan: #eae1db;
  --darkertan2: #c7bbb3;
  --brown: #b47e5e;
  --pink: #ffbac9;
  --pink2: #f76b89;
  --select: #ffcbd9;
  --red: #ef8a85;
  --yellow: #f8e268;
  --blue: #00b2c5;
  --green: #a4d07a;
  --darkgreen: #8ac058;
  --lightgreen: #e0ebc7;
  --textdark: #53483a;
  --text: #635a4d;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--select) white;
}

::selection {
  background: var(--select);
}

* {
  max-width: 100%;
}


body {
  background-image: url('/images/bgs/3.png');
  background-attachment: fixed;
  font-family: Poppins;
  font-size: 11px;
  line-height: 22px;
  letter-spacing: 0.5px;
  animation: fadeInAnimation ease 0.7s;
  animation-iteration-count: 0.7;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

a,
button:hover {
  cursor: url("/images/cursors/tinycursor-hover.png"), auto;
}

h1 {
  display: inline;
  font-size: 10px;
  padding: 6px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--pink);
  margin-right: 4px;
  border-right: 6px solid #ffe6e8;
}

h2 {
  text-transform: uppercase;
  font-size: 10px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 35px;
  padding: 20px;
}

h2::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 1px;
  border-top: 1px dashed;
  color: var(--pink2);
}

h2::after {
  margin-left: 30px;
  width: 100%;
  margin-right: -100%;
}

h3 {
  text-transform: uppercase;
  font-size: 10px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

p {
  text-indent: 26px;
}

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

iframe {
  width: 100%;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
}

iframe:hover {
  border-color: var(--pink2);
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  border-style: dashed;
  border-width: 2px;
  border-bottom: none;
  color: var(--pink);
}

ul {
  list-style-type: "♡ ";

}

button {
  border: 0;
  background-color: transparent;
}


header {
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  padding: 25px;
}

banner:hover {
  opacity: 0.7;
}

ul.topnav {
  list-style: none;
  margin: auto;
  border-style: solid;
  border-width: 1px;
  border-color: var(--pink);
  border-radius: 10px;
  padding: 0px;
  overflow: hidden;
  background-color: var(--pink);
  width: fit-content;
}

ul.topnav li {
  float: left;
}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 12px 13px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {
  color: var(--pink);
  background-color: white;
}

ul.topnav li .active {
  color: var(--pink);
  background-color: white;
}

ul.topnav li.right {
  float: right;
}

@media screen and (max-width: 600px) {

  ul.topnav li.right,
  ul.topnav li {
    float: none;
  }

}


#container {
  display: flex;
  flex-flow: row wrap;
  max-width: 100vw;
  width: 80%;
  justify-content: center;
  padding: 1%;
  margin: auto;
  gap: 20px;
}

#container main {
  padding: 30px;
  border-style: solid;
  border-width: 1px;
  border-color: black;
  border-radius: 10px;
  background: white;
  box-shadow: 10px 10px var(--pink);
  flex: 2 1 400px;
  max-width: 800px;
}

#column {
  display: flex;
  flex-flow: column wrap;
  flex: 2 1 400px;
  max-width: 800px;
  gap: 20px;
  height: fit-content;
}

#container main,
aside,
funmain {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  height: fit-content;
}

#container funmain a:hover {
  background-color: var(--pink);
}

aside {
  font-size: 1em;
  line-height: 1.3em
}

aside.right {
  flex: 0 2 250px;
  align-items: stretch;
  padding: 30px;
  border-style: dashed;
  border-width: 1px;
  border-color: black;
  border-radius: 10px;
  background: white;
  height: fit-content;
}

aside.left {
  flex: 0 2 250px;
  padding: 30px;
  border-style: dashed;
  border-width: 1px;
  border-color: black;
  border-radius: 10px;
  background: white;
  height: fit-content;
}

@media only screen and (max-width: 800px) {
  main {
    width: 80%;
  }
}

@media only screen and (max-width: 600px) {
  main {
    width: 100%;
  }
}


.h1 {
  font-size: 10px;
  padding: 6px;
  font-family: 'Poppins';
  background-color: var(--pink);
  color: white;
  margin-right: 4px;
  font-weight: bold;
  border-right: 6px solid black;
  text-transform: uppercase;
}

#email {
  background: var(--pink);
  width: fit-content;
  margin: auto;
  border-radius: 10px;
  padding: 7px;
}

#email a {
  text-decoration: none;
  font-size: 14px;
  color: black;
  font-weight: bold;
}

#email a:Hover {
  color: white;
}

#box {
  display: flex;
  flex-flow: row wrap;
  max-width: 100vw;
  justify-content: center;
  align-content: center;
  padding: 2%;
  margin: auto;
  gap: 40px;
}

box.small {
  height: fit-content;
  flex: 1 1 33%;
}

box.big {
  height: fit-content;
  flex: 2 1 60%;
}

#albums {
  display: flex;
  flex-flow: row wrap;
  padding: 10px;
  gap: 7px;
  justify-content: center;
  align-content: center;
}

#albums img {
  width: 30%;
  max-width: 100px;
}

portfooter {
  max-width: 800px;
  margin: auto;
  margin-top: 30px;
  text-align: center;
  color: var(--pink2);
  -webkit-text-stroke: 5px white;
  paint-order: stroke fill;
}

/* Social icons */
.fa {
  text-decoration: none;
  color: var(--pink2);
  font-size: 20px !important;
}

.fa:hover {
  color: black;
}


@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins.ttf');
}


.meet {
  border-radius: 10px;
}



/* gallery */

.gallery {
  columns: 3;
  gap: 20px;
  margin-top: 20px;
}

.gallery img:hover {
  border-radius: 10px;
  outline: var(--pink2) 1px dashed;
  cursor: url("/images/cursors/tinycursor-hover.png"), auto;
}

.gallery .item {
  display: block;
  break-inside: avoid;
  margin-bottom: 15px;
  text-align: center;
  font-size: .85em;
  line-height: 1.3em;
  color: black;
}

.gallery .item a {
  text-underline-offset: 1px;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--pink);
}

.gallery .item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 5px;
}

@media screen and (max-width:1200px) {
  .gallery {
    columns: 3
  }
}

@media screen and (max-width:1000px) {
  .gallery {
    columns: 2
  }
}

@media screen and (max-width:860px) {
  .gallery {
    columns: 3
  }
}

@media screen and (max-width:700px) {
  .gallery {
    columns: 2
  }
}

@media screen and (max-width:500px) {
  .gallery {
    columns: 1
  }
}


/* lightbox */
body.no-scroll {
  overflow: hidden
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .7);
  text-align: center;
}

#lightbox p {
  text-align: right;
  color: #fff;
  margin-right: 50px;
  font-size: 30px;
}

#lightbox img {
  box-shadow: 0 0 25px #11111169;
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
}