body, html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	padding-top: 50px;
	text-align: center;
	font-family: 'Oswald', sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=VT323');

input {
	position: relative;
	left: 15px;
	height: 42px;
	width: 0px;
	border: 3px solid rgb(255,165,0);
	visibility: hidden;
	border-radius: 5px;
	transition: 0.5s linear;
	box-sizing: border-box;
	padding-left: 10px;
}

input[type="text"] {
	font-family: 'VT323', monospace;
	font-size: 14px;
}

button {
	background: rgb(255,165,0);
	border: none; 
 	height: 34px;
 	width: 24px;
  	visibility: hidden;
 	position: relative;
 	right: 18px;
 	top: -1px;
 	color: white;
 	transition: 0.3s linear;
 	border-radius: 0 3px 3px 0;
}

button:hover {
	background: tomato;
}

p {
	font-size: 20px;
	margin-top: 25px;
	color: rgb(102,102,102);
}

a {
	text-decoration: none;
	font-size: 24px;
	color: rgb(102,102,102);
	transition: 0.3s;
	cursor: pointer;
}

a:hover {
	color: rgb(255,178,70);
}

.visible-btn {
 	width: 350px;
 	visibility: visible;
}

.content {
	width: 70%;
	margin: 0 auto;
	text-align: left;
	border-left: 5px solid rgb(255,165,0);
	padding-left: 10px;
	padding-top: 1px;
	margin-bottom: 15px;
}

.content:hover {
	background: rgb(246,246,246);
}

.content h2 {
	margin-top: 5px;
}

.link-box {
	margin-bottom: 30px;
}

.open-btn {
	visibility: visible;
	margin-top: 40px;
	width: 100px;
    margin: 0px auto;
}

.open-btn img {
	width: 80px;
	height: 80px;
}

.btn {
 	width: 20px;
 	height: 20px;
 	background: tomato;
}
