* {
    box-sizing: border-box;
	scrollbar-color: rgba(0,0,0,.2) hsla(0,0%,100%,.1);
	scrollbar-width: thin;
}

body {
	background: url(monkey.jpg) #73d11d;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	font-family: 'Patrick Hand', 'Arial', 'Verdana', sans-serif;
	color: #111111;
	overflow: hidden;
    background-position: center;
}

.inner {
	background: #ffffff;
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	padding: 50px;
	max-height: 90%;
	max-width: 90%;
	overflow-x: hidden;
	overflow-y: auto;
}

#refresh {
    font-size: 0;
    background: url(refresh.png);
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0px;
    background-position: center;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
    transition: 250ms;
}
#refresh:hover {
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.7));
    transform: rotate(180deg);
}

h1 small {
	font-size: 17px;
}
h1 {
	margin-bottom: 20px;
}

.primary-btn {
    padding: 5px 15px;
	transition: 250ms;
    background: #22501a;
    color: #fff;
    margin-right: 10px;
	border: 2px solid #22501a;
	text-decoration: none !important;
	margin-bottom: 10px;
	display: inline-block;
}
.primary-btn:hover {
    background: #ffff;
    color: #22501a;
}
.row {
	justify-content: space-between;
}

.avatar {
	border-radius: 50%;
	overflow: hidden;
}
.avatar img {
	max-width: 100%;
}
.col-12 {
	padding-bottom: 30px;
}

#copynotice {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: block;
	line-height: 45px;
	text-align: center;
	font-size: 13px;
}
.hascopynotice {
	position: relative;
	padding-bottom: 45px !important;
}

body.screenshot .col-lg-6:first-child :not(h1) {
    display: none;
}
body.screenshot .col-lg-6:first-child h1 {
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    font-size: 50px;
}

@media (max-width: 575px) {
	.avatar {
		display: none;
	}
}
@media (max-width: 475px) {
	.inner {
		max-width: 100%;
		width: 100%;
		max-height: 100%;
		height: 100%;
		transform: none;
		position: unset;
	}
}