:root {
  --accent-color: #03ffdf; /* global scope */
  --focus-color: #daff00; /* global scope */
}
* {
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
	box-sizing: border-box;
}
body {
	font-family: "adobe-caslon-pro", sans-serif;
	font-size: 18px;
}
h1,h2,h3,h4,dt {
	font-weight: 400;
	margin: .5em 0 0 0;
	font-family: 'futura-pt','futura', sans-serif;
}
h1 {
	font-size: 5rem;
	margin: 0;
	padding-bottom: 0;
	line-height: 0;
	padding-top: .6em;
	margin-bottom: .2em;
}
h2 {
	font-size: 2rem;
}
dt {
	margin-bottom: .5rem;
}
a {
	transition: 9s ease all;
	display: inline-block;
}
button, a.button {
	display: inline-block;
    font-family: 'futura-pt','futura', serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5;
    padding: .2em .75em .25em;
    transition: 4s ease all;
    width: auto;
    height: auto;
    background-color: var(--accent-color);
    border: none;
    box-shadow: 2px 3px 0px 4px black;
    border-radius: 5px;
    color: black;
    text-decoration: none;
}
a.button:hover, a.button:visited, a.button:active {
	color: black;
	text-decoration: none;
}
a:hover, a:focus, button:hover, button:focus {
	transform: scale(2) translateX(0) translateY(0);
	cursor: pointer;
}
input:focus, textarea:focus {
	transform: scale(1.05);
	background-color: var(--focus-color);
}

button:hover, button:focus {
	background-color: var(--focus-color);
}
textarea {
	height: 4rem;
}
textarea, input {
	font-family: serif;
	font-size: 18px;
	padding: .25rem;
}

@media screen and (min-width: 600px) {
	h1 {
		font-size: 7rem;
	}
	h2 {
		font-size: 3rem;
	}
}
@media screen and (min-width: 800px) {
	h1 {
		font-size: 10rem;
	}
}