/* basic styles */

body, html{
	height: 100vh;
	margin: 0;
}

.day{ 
	background: url("assets/day.webp");
	/* Full height */
	height: 100%; 

	/* Center and scale the image nicely */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

}

.night{ 
	background: url("assets/night.webp");
	/* Full height */
	height: 100%; 

	/* Center and scale the image nicely */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.logo {
	margin: auto;
	margin-top: 0%;
}
.logo img {
	height: auto;
	max-width: 40vw;
}

.to-menu{
	margin: auto;
}

.btn-group-lg>.btn, .btn-lg {
	padding: .5rem 1rem;
	font-size: 1.5rem;
	line-height: 1.5;
	border-radius: .3rem;
	font-family: "cursive";
}

.btn-outline-secondary {
	color: #d2b788;
	border-color: #d2b788;
}

.btn{
	background-color: black;
	opacity: 0.75;
}

.flag{
	margin-left: 0.5rem;
	height: 1.3rem;
}

.language-toggle{
	text-align: end;
}



.social-group{
	display: inline block;
	text-align: center;
}

a:link {
	text-decoration: none;
}


.fa {
	font-size: 25px;
	width: 50px;
	height: 50px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	margin-right: 5%;
	margin-left: 5%;
	
}

.fa:hover {
	opacity: 0.7;
	color: #d2b788;
}

.fa-phone {
	background-color: black;
	opacity: 0.75;
	color: #d2b788;
	padding-top: 12px;
}

.fa-facebook {
	background-color: black;
	opacity: 0.75;
	color: #d2b788;
	padding-top: 12px;
}

.fa-instagram {
	background-color: black;
	opacity: 0.75;
	color: #d2b788;
	padding-top: 12px;
}


.footer{
	margin: auto;
    font-size: small;
    margin-bottom: 0;
}

.footer a{
	color: black;
}

.container{
	width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}



@media only screen and (min-width: 1200px){

	html{
		background-color: black;
		height: 100vh;
	}

	.day{ 
		background: url("assets/day.webp");
		/* Full height */
		height: 100%; 
	
		/* Center and scale the image nicely */
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	
	}
	
	.night{ 
		background: url("assets/night.webp");
		/* Full height */
		height: 100%; 
	
		/* Center and scale the image nicely */
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}

	.logo img {
		height: auto;
		max-width: 10vw;
	}

	.to-menu {
		margin: auto;
		margin-top: 10px;
	}


} 

	