@import url('https://fonts.googleapis.com/css2?family=Bellota:wght@300&family=Indie+Flower&display=swap');
*{
	box-sizing: border-box;
}
html{
	width: 100%;
	max-width: 100vw;
}
html, body{
	margin: 0;
	border: 0;
	background-image: url(../photos/background-blackboard2.jpg);
	background-size: 100%;
	background-attachment:center;
	background-repeat: repeat;
	background-position: top center;
}
.a-alt{
	color: rgb(230,230,230);
	text-decoration: none;
	text-shadow: 0 0 5px black;
	transition: all 0.5s ease-in-out;
}
.a-alt:hover{
	color: white;
	text-decoration: underline;
	text-shadow: 0 0 8px black;
	transition: all 0.5s ease-in-out;
}
.a-drawer{
	color:rgb(230, 230, 230);
	text-decoration: none;
	background-color: rgb(10, 10, 10);
	/**max-width: 100vw;**/
	width: 100vw;
	transition: all 0.5s ease-in-out;
	padding: 10px;
	margin: rgb(10,10,10);
}
.a-drawer:hover{
	color: white;
	text-decoration: none;
	background-color: firebrick;
	transition: all 0.5s ease-in-out;
}
.a-header{
	color: rgb(230,230,230);
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}
.a-header:hover{
	color: white;
	text-decoration: none;
	text-shadow: 0 0 8px black;
	transition: all 0.5s ease-in-out;
}
.bg-1{
	background-color: darkred;
}
.bg-3{
	background-color: #990000;
}
.bg-5{
	background-color: #4d0000;
}
.bg-blackboard{
	background-image: url('../photos/background-blackboard2.jpg');
}
.bg-bone{
	background-color: rgb(225,225,225);
}
.bg-darkened{
	background-color: rgb(10,10,10);
}
.bg-main{
	background-color: rgb(230,230,230);
}
.carousel-item{
	height:50vh;
	width:100vw;
				
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.desktop-fitment{
	display: none!important;
}
.photo-text{
	color: white;
	text-shadow: 5px 5px 8px black;
	font-weight: 700;
}
#desktop-nav{
	display: none;
}
.div-badge{
  
	border-left: 50% solid #990000;
	border-right: 50% solid #990000;
	border-bottom:  0 #990000;
	border-top:  100px solid transparent;
}
#drawer-container{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.fullscreen{
	max-height: 100vh;
	height: 100vh;
}
.font-bellota{
	font-family: 'Bellota', cursive;
}
.font-indie-flower{
	font-family: 'Indie Flower', cursive;
}
.font-shadow{
	text-shadow: 0 0 5px black;
}
.p-alt{
	color: white;
	text-shadow: 0 0 5px black;
}
.text-alt{
	color: rgb(230,230,230);
}
@media screen and (min-width: 768px){
	.carousel-item{
		height:80vh!important;
		width:100vw!important;
		
		/*background-size: 100% 100%!important;*/
	}
	.desktop-fitment{
		display: block!important;
	}
	#desktop-nav{
		display: block;
	}
	#mobile-nav{
		display: none;
	}
}