* {
	box-sizing: border-box;
}

body {
	background: linear-gradient(rgba(20, 26, 35,0.80),rgba(20, 26, 35, 0.80)),
				url("https://proxy-files.ashcraft.cz/sunlight.jpg") no-repeat center center fixed;
	background-size: cover;
	font-family: "Open Sans", Helvetica;
	margin: 0;
	position: relative;
}

html, body {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
	padding: 3px;
}

.container {
	width: 100%;
	height: 100%;
}

.logo img {
	width: 225px; /* Change image size for mobile */
	-webkit-animation-name: logo;
	        animation-name: logo;
	-webkit-animation-duration: 5s;
	        animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	        animation-timing-function: ease-in-out;
}

.info {
	font-family: 'Open Sans', sans-serif;
	color: white;
}

.link {
	color: white;
	text-shadow: 1px 1px 1px #BF7F00, -1px -1px 8px #BF7F00;
}

.link:hover {
	text-decoration: underline;
}

.navbar {
	text-align: center;
	display: flex;
	flex-direction: column;
	padding: 10px;
	width: 100%;
	height: 550px
}

.info {
	padding: 10px;
}

.navbar-item-text {
	border-radius: 100px;
	transition: color .2s, background .2s;
	cursor: pointer;
	height: 30px;
	line-height: 20px;
	padding: 10px 10px;
	margin: 16px 5px 5px;
	color: #c4c4c4;
}

.login {
	position: unset;
}

input[type=text] {
	background: transparent;
	border: 0;
	border-bottom: 1px solid white;
	box-sizing: border-box;
	color: white;
	font-size: 16px;
	outline: none !important;
	opacity: .6;
	padding-top: 10px;
	padding-bottom: 15px;
	width: 250px;
	text-align: left;
	margin-left: 5px;
}

.paypal {
	max-width: 750px;
	background: rgba(255,255,255,.1);
	height:	50px;
	overflow: hidden;
}

@-webkit-keyframes logo {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.07);
		        transform: scale(1.07);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes logo {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.07);
		        transform: scale(1.07);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@media(min-width: 400px) {
	.logo img {
		width: 290px; /* Change image size for mid sized devices */
	}
}

@media(min-width: 1250px) {

}

@media(min-width: 1000px) {

	.logo img {
		width: 200px; /* Change image size for desktop */
		margin: 20px;
	}

	.img {
		width: 100%;
	}

	.navbar {
		display: inline-flex;
		flex-direction: row;
		padding-top: 10px;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 150px;
		background-image: linear-gradient(to bottom, #000, transparent);
	}

	.navbar-item-text {
		border-radius: 100px;
		transition: color .2s, background .2s;
		cursor: pointer;
		height: 30px;
		line-height: 20px;
		padding: 10px 10px;
		float: left;
		margin: 16px 5px 5px;
		color: #c4c4c4;
	}

	.navbar-item-text:hover {
		color: white;
	}

	.info {
		margin: 150px 150px 0;
		padding-bottom: 150px;
		font-size: 1.2rem;
		font-weight: 400;
		line-height: 1.7;
	}

	.info h1 {
		font-family: Catamaran, sans-serif;
		font-size: 40px;
		font-weight: 700;
	}

	.info p {
		margin-bottom: 10px;
	}

	.login {
		position: absolute;
		right: 30px;
		top: 10px;
	}

}
