@charset "UTF-8";

/*
Theme Name: Taos Gravel
Version: 1.1
*/

/* ********************** FONTS ********************** */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 
  font-family: "Montserrat", sans-serif;
*/

/* ********************** VARIABLES ********************** */
:root {
    /* colors */
	--green-d: #283618;
	--green-l: #606C38;
	--white: #FEFAE0;
	--orange-l: #DDA15E;
	--orange-d: #BC6C25;
    /* fonts */

    /* font sizes */
}

/* ********************** GLOBAL ********************** */
* {
    padding: 0;
    margin: 0;
}

/* ********************** Coming Soon ********************** */
.coming-soon {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 32px;
	gap: 12px;
	background: linear-gradient(90deg,rgba(255, 255, 255, .90) 0%, rgba(255, 255, 255, .90) 100%), url(https://images.pexels.com/photos/11160727/pexels-photo-11160727.jpeg?_gl=1*28j1do*_ga*NTM5OTE0OTIwLjE3NTI4Njg5NDk.*_ga_8JE65Q40S6*czE3NTM4NDk1MTIkbzUkZzEkdDE3NTM4NTA0NjMkajUwJGwwJGgw);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}
.coming-soon span {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.coming-soon h1, .coming-soon h2 {
	font-family: "Montserrat", sans-serif;
	color: var(--green-d); 
}
.coming-soon a {
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	padding: 3px;
	color: var(--orange-d);
	transition: .3s all;
}
.coming-soon a:hover {
	border-bottom: 1px solid var(--orange-d);
}
