@charset "UTF-8";

@font-face {
	font-family: 'MedievalSharp';
	src: url('/Fonts/MedievalSharp/MedievalSharp-Regular.woff2') format('woff'), 
		 url('/Fonts/MedievalSharp/MedievalSharp-Regular.ttf') format('truetype'); 
}  

* {
	font-family: 'MedievalSharp';
	color:#fdc259;
}

html,body{
	background-color:#080908;
	background-image: url('/assets/Background.png');
	margin: 0px;
	padding: 0px;
}
.header{
	position: relative;
	background-image: url(/assets/intro-screen.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 90vh;
	text-align: center;
	font-size:2rem;
}
.header .fade {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	background: linear-gradient(0deg, #080908FF 30%, #08090800 100%)
}

.fade img{
	margin: auto;

}

.link{
	width: 23.4rem;
	
}
.link-cta {
	background-color: #00000000;
	transition: background-color 1s, color 1s;
	align-items: center;
    border: 1px solid #fdc259;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .175rem;
    max-height: 3.75rem;
    padding: 1.375rem 1.5rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 2rem auto;
}

.link-cta:hover {
	background-color: #fdc259;
	color: #080908;
}
.link-cta:hover img {
	mix-blend-mode: difference;
}

section {
	margin: 2rem 20%;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    max-height: 560px;
    position: relative;
    margin: auto;
    overflow: hidden;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    width: auto;
    margin-top: 0px;
    padding: 66px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    height: -webkit-fill-available;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover{
	background: linear-gradient(90deg, #fdc25988, transparent);
}
.next:hover {
	background: linear-gradient(270deg, #fdc25988, transparent);
}

/* Caption text */
.text {
  color: #fdc259;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #fdc259;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ad7209;
  transform: rotate(45deg);
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #fdc259;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

