* {
	box-sizing: border-box;
}

@font-face {
	font-family: "ChiKareGo2"; 
	src: url("/fonts/ChiKareGo2.ttf") format("truetype");
}

/*
///////////////////////////////////////

THIS FONT ISN'T THE ACTUAL CHICAGO FONT, BUT A RECREATION MADE BY SOMEONE
OUT OF ADMIRATION FOR SUSAN KARE'S WORK.
YOU CAN CHECK THE WHOLE POST, AND THE LINK TO THE TTF DOWNLOAD, HERE:
http://www.suppertime.co.uk/blogmywiki/2017/04/chicago/

//////////////////////////////////////
*/

body {
	font-family: "ChiKareGo2", NSimSun, "Courier New", "Times New Roman", Calibri;
	color: #020C16;
	overflow: hidden;
	background: url(images/milky_way_mac.png) fixed;
	background-size: cover;
	background-color: #7DD4FF;
}

.container {
	border: 2px solid #FFF;
	border-radius: 5px;
	width: 100%;
	max-width: 1000px;
	height: 700px;
	margin: 0 auto;
	margin-top: 50px;
	padding: 10px;
	overflow: auto;
	background: transparent;
	background-image: linear-gradient(to bottom right, rgba(181,211,255,85%), rgba(255,255,255,80%));
}

.floatie {
	position: fixed;
	top: 100px;
	right: 500px;
	z-index: 1;
}

.back {
	position: relative;
	bottom: 40px;
	left: 915px;
	margin-top: 10px;
	transition: 0.3s;
}

.back:hover {
	filter: drop-shadow(0px 0px 10px cyan);
}

figure {
	float: right;
	margin: 10px;
}

figcaption {
	font-size: 12px;
	color: #5585B1;
}

.img {
	width: 200px;
	opacity: 0.8;
	transition: 0.3s;
}

.img:hover {
	opacity: 1.0;
}

#img1 {
	width: 250px;
}

.apple {
	float: left;
	margin-top: 30px;
}

h1 {
	text-align: center;
	color: white;
}

h2 {
	text-align: center;
	color: white;
}

h4 {
	margin-top: 40px;
}

p {
	padding-left: 10px;
	padding-right: 10px;
}

.back {
	margin-top: 60px;
}

/* //// scrollbar //// */

@supports not selector(::-webkit-scrollbar) {
  html {
      scrollbar-color: #A5C2EE #DAEBFF;
  }
}

::-webkit-scrollbar {
	width: 16px;
	height: 16px;
}

::-webkit-scrollbar-track {
	border: 2px solid #95B2E0;
	border-radius: 10px;
	background: rgba(255,255,255,55%);
}

::-webkit-scrollbar-thumb {
	border-left: 2px solid #A8C8FF;
	border-right: 2px solid #A8C8FF;
	border-radius: 10px;
	background-image: linear-gradient(to top, rgba(199,229,255,55%), rgba(255,255,255,55%));
}