/*
Theme Name: Perk Up!
Text Domain: perkup
*/
:root {
	--pu-black: #303030;
	--pu-brown: #7c6f5d;
	--pu-orange: #b75f34;
	--pu-white: #ffffff;
}
* {
	font-family: 'Montserrat', sans-serif;
	color: var(--pu-black);
}
html, body{
	margin: 0;
	padding: 0;
}
body {
	width: 100%;
	height: 100dvh;
	background-color: var(--pu-white);
	display: flex;
	justify-content: center;
	align-items: center;
}
h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 60px;
	font-weight: 900;
	text-transform: uppercase;
}
h2 {
	font-family: 'Caveat', cursive;
	color: var(--pu-brown);
	margin-top: -20px;
}
h4{
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	color: var(--pu-brown);
}
p {
	line-height: 1.5;
}
img{
	width: 90%;
	max-width: 350px;
	display: block;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
}
#coming-soon{
	width: 90%;
	max-width: 420px;
	text-align: center;
}
#countdown-container{
	width: 90%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
#countdown{
	display: flex;
	justify-content: space-between;
}
.countdown-item{
	font-size: 25px;
	font-weight: 700;
	color: var(--pu-orange);
}