@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  marker: none;
}


@font-face {
	font-family: "Doyle";
	src: url("../fonts/Medium.otf");
	font-weight:bold;
}

@font-face {
	font-family: "Doyle";
	src: url("../fonts/Regular.otf");
	font-weight: normal;
	font-style: italic; /* Beachten Sie die Hinzufügung von font-style: italic für kursiven Text */
}


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background-color: #c8f000;
  font-family: "Doyle", serif;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-items: center;
  transition: background-color 0.5s ease; /* Transition für die Hintergrundfarbe */

}

button {
  background-color: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

hr {
  border: none; /* Entfernt alle Standard-Ränder */
  border-bottom: 1.5px solid black; /* Fügt nur eine untere Linie hinzu */
  margin-bottom: calc(var(--unit)*1); /* Optional, um den Abstand unter der Linie zu definieren */
}

figure {
  line-height: 0;
}

main {width: 100%;text-align: center;min-height: calc(100vh - 160px);}

.monogram {max-width: 260px;margin: 110px auto 0;}

*, *::after, *::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
* {
	cursor: none !important;
  }

.custom-cursor, .custom-cursor-left, .custom-cursor-right, .custom-cursor-close, .custom-cursor-up {
	position: fixed;
	pointer-events: none;
	display: flex;
	align-items: center;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	backface-visibility: hidden;
	transition: transform 0.2s ease-out;
	z-index: 300000;
	pointer-events: none;
	mix-blend-mode: difference;
	opacity: 0;
	background-color: transparent;
  }
  
  .custom-cursor > img {
	background-color: transparent;
	object-fit: contain;
  }
  
  .custom-cursor-left > img {
	background-color: transparent;
	object-fit: contain;
  }
  
  .custom-cursor-right > img {
	background-color: transparent;
	object-fit: contain;
  }
  
  .custom-cursor-up > img {
	background-color: transparent;
	object-fit: contain;
  }
  
  .custom-cursor-close > img {
	background-color: transparent;
	object-fit: contain;
  }
  
  ::-webkit-scrollbar {
	display: none;
  }
  
  .c-scrollbar {
	display: none;
  }

h1 {
	text-align: center;
	font-size: 20em;
	letter-spacing: 0.025em;
	max-width: 40vw;
	margin: auto;
	margin-top: 7.5vh;
	font-family: 'Logo', serif;
}

h2 {
	text-align: center;
	font-size: 3em;
	font-weight: bold;
	letter-spacing: 0.025em;
	max-width: 60vw;
	margin: auto;
	margin-top: 10vh;
}

p{
	text-align: center;
	font-weight: bold;
	max-width: 40vw;
	margin: auto;
	font-size: 1.5em;
	margin-top: 2.5vh;
}

a {
	text-align: center;
	font-weight: bold;
	/* text-transform: uppercase; */
	letter-spacing: 0.05em;
	font-size: 0.75em;
}
  
footer {padding-bottom: 60px;}

.contact {
	transition: all 1s ease;
	max-width: 80vw;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin-top: 10vh;
	text-shadow: transparent 0px 0px 0px, transparent 0px 0px 0px, transparent 0px 0px 0px, transparent 0px 0px 0px, transparent 0px 0px 0px;
}

.contact a {
	display: inline-block;margin: 0 20px;
}

@media  (hover: none) {
	.custom-cursor, 
	  .custom-cursor-left, 
	  .custom-cursor-right, 
	  .custom-cursor-close, 
	  .custom-cursor-up {
		  display: none;
	  }
  }
  
  @media (pointer: coarse) {
	.custom-cursor, 
	  .custom-cursor-left, 
	  .custom-cursor-right, 
	  .custom-cursor-close, 
	  .custom-cursor-up {
		  display: none;
	  }
  }

@media only screen and (max-width: 1025px) {
	h2 {
		max-width: 90vw;
		font-size: 2.25em;
		margin-top: 40px;
	}

	main {min-height: auto;}

	p {
		max-width: 90vw;
		margin: auto;
		font-size: 1em;
		margin-top: 3vh;
		line-height: 1.25;
	}


	.monogram {width: 160px;margin-top: 45px;}

	.contact {
		max-width: 90vw;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		margin-top: 5vh;
	}

	.contact a {margin-top: 12px;}
}