*, *::before, *::after {
  box-sizing: border-box;
}

body, html {font-size: 100%; padding: 0; margin: 0; height: 100%;}

body {
	font-family: 'Quattrocento Sans', Arial, sans-serif;
	color: #373737;
	background: #fafafa;
	font-weight: normal;
}

a {text-decoration: none;}

.container {
	padding: 5%;
	width: clamp(300px, 100vw, 100%);
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

h1 {
	font-family: 'Quattrocento', Arial, sans-serif;
	font-size: clamp(1em, 20vw, 6em);
	font-weight: normal;
  animation: fadeIn 1s ease-in forwards;
	max-width: 100vw;
}

.lll {float: right;}

.btnbig {
	border: none;
	font-family: inherit;
	font-weight: 100;
	font-size: clamp(0.5em, 10vw, 3em);
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 20px;
	display: inline-block;
	margin: 0px 0px;
	outline: none;
	position: relative;
	width: clamp(300px, 90vw, 100%);
	text-align: left;
	animation: fadeIn 1s ease-in forwards;
}

.btn {
	display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: inherit;
  font-size: 3em;
  color: inherit;
  background: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin: 0px;
  margin-top: 50px;
  margin-left: 15px;
  padding: 10px;
  width: 100px;
  height: 100px;
  outline: none;
  animation: fadeIn 1s ease-in forwards;
}

.btn-1 {
	color: #373737;
}

.btn-1a:hover,
.btn-1a:active {
	color: #fff;
	background: #000;
	box-shadow: 0px 3px 5px #888888;
}

.btn-2 {
	color: #373737;
}

.btn-2a:hover,
.btn-2a:active {
	color: #fff;
	background: #222222;
	text-shadow: none;
  border-radius: 0px;
}