@charset "UTF-8";
/* CSS Document */



/* —————————————————————————— FONT INFO —————————————————————————— */


/* <weight>: Use a value from 400 to 900
   <uniquifier>: Use a unique and descriptive class name */
.playfair-display-<uniquifier> {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* <weight>: Use a value from 300 to 900
   <uniquifier>: Use a unique and descriptive class name */
.playfair-<uniquifier> {
  font-family: "Playfair", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
	background-color: #9FCCC6;
	background-position: center;
  	font-family: "Playfair Display", serif;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	animation: elasticBoxModel 15s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

@keyframes elasticBoxModel {
    0% { 
		background-image:url("images/BMT_clock_1em_patternmodule.png"); 
		background-size: auto 200px;
	}
	25% { 
		background-image:url("images/BMT_clock_1em_patternmodule.png"); 
		background-size: auto 200px;
	} 
	30% { 
		background-image: url("images/BMT_pug_2em_patternmodule_4x.png"); 
		background-size: auto 200px;
	}
	61% { 
		background-image: url("images/BMT_pug_2em_patternmodule_4x.png"); 
		background-size: auto 200px;
		}
	65% { 
		background-image:url("images/BoxModelTartan-3em_patternmodule_2x.png"); 
		background-size: auto 200px;
		}
	95% { 
		background-image:url("images/BoxModelTartan-3em_patternmodule_2x.png"); 
		background-size: auto 200px;
		}
	100% { 
		background-image:url("images/BMT_clock_1em_patternmodule.png"); 
		background-size: auto 200px;
		}
}


header {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 20%;
	min-width: 200px;
	min-height: 300px;
	max-height: 500px;
	margin: 22.5% auto 25% auto; 
	padding: 0 3rem 3rem 3rem ;
	background-color: #2f2323;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 20px 0px white;
}

.front{
	text-align: center;
}

.front::after { /* inner border of oval */
  content: "";
  position: absolute;
  top: 1em;
  right: 1em;
  bottom: 1em;
  left: 1em;
  border: 2px dotted #f8f2e5;
  box-shadow: 0px 0px 6px 0px #ffbcc9;
  border-radius: 50%;
  z-index: 2;
}


h1 {
	font-style: italic;	
	font-size: 2.75em;	
	line-height: 2.75rem;
	color: #FFBCC9;
	word-spacing: -.1rem;
	text-align: center;
}

h2 {
	font-family: verdana, sans-serif;
	text-transform: uppercase;
	font-size: .6rem;
	letter-spacing: .1rem;
	margin-top: -1rem;
	margin-bottom: 2rem;
	color: #9FCCC6;
	border-bottom: 2px dotted #FFBCC9;
	padding-bottom: 1rem;
}

h3 {
	width: 22ch;
	margin-top: -1.5em;
	margin-bottom: 1.5em;
	margin-right: auto;
	margin-left: auto;
	font-size: .75em;
	font-weight: normal;
	letter-spacing: .0125rem;
	color: white;
}

#entry_button {
	position: relative;
	background-color: #4b4242;  /* #927878 #9FCCC6 #4b4242 #d0bbbb; */
	font-family: verdana, sans-serif;
	font-size: .65rem;
	font-weight: bold;
	font-variant: small-caps;
	letter-spacing: .15rem;
	padding: .25rem .75rem .5rem .875rem;
	border-radius: 500px;
	border: 1px solid #817474;
	text-align: center;
	z-index: 300;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .3s ease-in-out;
	color: #f8f2e5;
}

#entry_button a {
	text-decoration: none;
	color: #f8f2e5;
}

#entry_button a:link {
	color: #f8f2e5;
}

#entry_button a:visited {
	color: #f8f2e5;
}

#entry_button:hover {
	background-color: #817474 /* #9fccc6 #609b89 #0b5257 #609b89 #549f4d #e9af3c */;
	color: #2f2323;
	box-shadow: 0px 2px 15px 5px #2f2323 inset;
	border: 1px dotted #e9af3c;
}

#entry_button:active {
	box-shadow: 0px 0px 3px 0px white;
}

#entry_button a:focus {
}



/* ———————————————— MEDIA QUERIES ———————————————— */

@media screen and (min-width: 1000px) /* larger desktops */ {
	
	body {
	background-size: 20%;
	}
	
	header {
		width: 25%;
		padding-top: 1rem;
		margin-top: 18.5%;
	/*	padding: 0 3rem 3rem 3rem ; */
	}
	h1 {
		max-width: 9ch;
		margin: .7em auto;
		margin-top: .25rem;
	}
	h2 {
		margin-top: -1.25rem;
		margin-bottom: 1rem;
	}
	h3 {
		width: 100%;
		margin-top: 1rem;
	}
	#entry_button {
		margin-top: -.25rem;
		font-size: .75rem; 
	}
}

@media screen and (max-width: 478px) /* phones */ { 

	body {
		background-size: auto 50px;

	}
	header {
		margin-top: 17.5vh;
		width: 50%;
		min-width: auto;
		min-height: auto;
		max-height: auto;
	/*	padding: 0 3rem 3rem 3rem ; */
	}
	
	h1 {
	font-size: 2.5em;	
	line-height: 2.5rem;
	}

	h3 {
		font-size: .75em;
	}
	
	#entry_button {
		font-size: .7rem;
	}

}


