@font-face {
  font-family: Forgetica;
  src: url(/static/sans-forgetica.otf);
}

html, body {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	height: calc(100% - 5px);
}

div, a {
	box-sizing: border-box;
}

body {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: rgb(230 140 50);
}

img {
	object-fit: cover;
	width: 25vw;
	height: 25vw;
	border-radius: 50%;
	border: 4px solid rgb(232, 157, 79);
}

h1 {
	font-family: Forgetica;
	text-transform: uppercase;
}

.socials {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 5px;
}

.socials > a {
	border-radius: 6px;
	background-color: transparent;
	padding: 5px;
	text-decoration: none;
	transition: all 0.4s linear;
	/* color: #0E1A65; */
	color: white;
}

.socials > a:hover {
	color: white;
	background-color: #0E1A65;
}

.heart {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 5px;
}

.heart > i {
	color: red;
}

@media (max-width: 850px) {
	img {
	    width: 50vw;
	    height: 50vw;
	}
	.heart {
		top: 0;
	}
}
