* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    line-height: 2rem;
	-webkit-font-smoothing: antialiased;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

body {
	font-size: 16px;
    color: #e0e0e0;
    background-color: #121212;
    text-align: center;
}

header {
    padding: 4% 0% 2% 16%;
    background-color: #202020;
    text-align: left;
}

.code-label {
    background-color: #d9d9d9;
    color: #313131;
	margin-left:20px;
    font-weight: 500;
    border-radius: 1.25rem;
    font-size: .75rem;
    line-height: 3.5rem;
    padding: .25rem .5rem;
    height: 4.5rem;
    white-space: nowrap;
    vertical-align: top;
}

main {
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 20px 250px;
}

section {
	padding-top:1%;
    margin: 0 15px;
}

footer {
    background-color: #202020;
    text-align: center;
    padding: 20px;
}

footer h2 {
    font-size: 30px;
    margin: 0;
}

.footer-line {
    background-color: #242424;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}

div {
	display:inline-block;
}

img {
  display: block; /* Ensures it's treated as a block element */
  margin: 3% auto; /* Centers it horizontally */
	width:192px;
	height:128px;
}

.first {background-image: url('img1.gif');}
.second {background-image: url('img2.gif');}
.third {background-image: url('img3.gif');}

.icon {
    width: 192px;
    height: 192px;
    border-radius: 12px;
	transition: all 0.10s ease-in-out;
}

.icon:hover {
	transform: rotate(10800deg);
	border-radius: 96px;
	transition: transform 30s linear, border-radius 0.15s ease-in-out;
}

h1 {
	font-weight: 300;
	font-size: 60px;
    display: inline;
}

h2 {
	font-weight: 400;
}

h3 {
	color:#999;
    font-size: 1.5rem;
	font-weight: 300;	
}

h4 {
    font-size: 1.5rem;
	font-weight: 400;
}

h5 {
	color:#666;
    font-size: 0.75rem;
	font-weight: 400;
}

p {
	font-size: 16px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.success {
	color:#9bca3e;
}

.failure {
	color:#bd2426;
}

a {
    color: #33b5e5;
    text-decoration: none;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: cubic-bezier(0,0,.2,1);
    transition-timing-function: cubic-bezier(0,0,.2,1);
}

a:hover {
    color: #a9ff15;
}

@media (orientation: portrait) {
img {
	width:96px;
	height:64px;
	transform: rotate(90deg);
}
main {
    flex-direction: column;
	text-align:center;
}
}

@media (orientation: landscape) {
main {
    flex-direction: row;
}
}