body {
	margin: 0;
	background: #FDF9F6;
	text-align: center;
}
#content {
	display: flex;
	height: 100vh;
	align-items: stretch;
	justify-content: center;
}
.wrapper-left, .wrapper-right {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 7vw 9vw;
	gap: 10px;
}
.wrapper-right {
	background: ghostwhite;
	background-image: url(wedding-01.jpg);
	background-size: cover;
	background-position: center center;
}
.show-gallery {
	position: absolute;
	bottom: 4em;
}
.show-gallery a {
	display: block;
	padding: .5em 1em;
	background: white;
	text-decoration: none;
	border-radius: 3px;
	border: 1px solid dodgerblue;
	color: black;
}
img.arrow {
    position: absolute;
    bottom: 0;
    left: -90px;
    width: 70px;
    rotate: 30deg;
}
span.vsetky {
    position: absolute;
    left: -230px;
    top: -40px;
    font-size: 1.4em;
    font-family: 'Patrick Hand';
    font-style: italic;
}

h1 {
	font-family: "Playwrite PL";
	margin-top: 0;
}
body, p {
	font-family: "Patrick Hand";
	font-size: 18px;
}
span.datum {
    letter-spacing: 1px;
    font-size: 1.1em;
}


input {
  margin-top: 1rem;
}

input::file-selector-button {
  font-weight: bold;
  color: white;
  background: dodgerblue;
  padding: 0.8em 1.2em;
  border: thin solid dodgerblue;
  border-radius: 3px;
  cursor: pointer;
}

/*** Galeria ***/
.hlavicka {
	padding: 9vw;
}
.hlavicka h1 {
	margin-bottom: 0;
}
.gallery img {
    width: calc(100% - 10px);
    margin: 5px;
    cursor: pointer;
}
.sorting {
    text-align: left;
    padding: 30px;
}
@media only screen and (max-width: 1600px) {
.wrapper-left {
	padding: 2vw 4vw;
	gap: 0;
}
}
@media only screen and (max-width: 767px) {
#content {
  flex-direction: column-reverse;
  padding-bottom: 12em;
}
.wrapper-left {
	padding: 4vw;
}
.wrapper-right {
    aspect-ratio: 1 / 1;
}
h1 {
    font-size: 1.8em;
}
.show-gallery {
	position: absolute;
	bottom: -9em;
}
span.vsetky {
	left: -90px;
	font-size: 1.2em;
}
}
@media only screen and (min-width: 1024px) {
	#content > * {
		width: 50%;
	}
}
