@import url('https://fonts.googleapis.com/css2?family=Arbutus&family=Poppins:wght@500&display=swap');

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
            box-sizing: border-box;
}

#title {
	font-family: "Arbutus";
}

html { 
  background: url(/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

img {
	width: 150px;
}

h1, h4 {
	flex-direction: column;
}

h1 {
	margin-bottom: -20px;
}

h4 {
	margin-bottom: -10px;
}

.wrapper, h1, h4 {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (orientation: landscape) {
	.wrapper {
		flex-direction: row;
	}
}

@media (orientation: portrait) {
	.wrapper {
		flex-direction: column;
	}
}

figure {
	width: 200px; 
	border: 1px solid #ddd;
	border-radius: 10px;
	border-width: 0 1px;
	box-shadow: 0 0 12px rgba(0,0,0,.3);
	-moz-box-shadow: 0 0 12px rgba(0,0,0,.3);
	-webkit-box-shadow: 0 0 12px rgba(0,0,0,.3);
	padding: 15px;
	margin: 2vh 5w 2vh 5vw;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	background-color: #fff;
	transition: all ease-in-out 0.3s;
}

figure:hover {
	transform: scale(1.05);
	transition: all ease-in-out 0.1s;
}

a {
	text-decoration: none;
	color: black;
}

img {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

footer {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	text-align: center;
	opacity: 75%;
	margin-top: 2vh;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
