@font-face {
	font-family: WinterDrink;
	src: url(WinterDrink.ttf);
}

html, body {
	background-color: black;
	color: white;
}

a, a:active, a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h2 {
	font-family: WinterDrink;
	margin-bottom: 40px;
}

#logo {
	width: 100%;
	text-align: center;
	padding-bottom: 100px;
}

.logo {
	width: 300px;
}

/* ABOUT */
#about {
	width: 60%;
	margin: auto;
	margin-bottom: 70px;
	text-align: center;
}

#profilepic {
	border: 3px solid #E1315A;
	border-radius: 50%;
	width: 300px;
	margin-bottom: 70px;
}

#profilepic:hover {
	animation-name: spin;
    animation-duration: 4000ms;
	cursor: pointer;
}

.bio {
	font-size: 18px;
}

/* EBOOK */
#ebook {
	width: 50%;
	margin: auto;
	margin-bottom: 70px;
	text-align: center;
	margin-bottom: 200px;
}

#ebooktmb {
    width: 50%;
}

#ebook p {
    margin-top: 20px;
}

#ebook #kickstart {
	width: 300px;
	margin-top: 50px;
}

#ebook #launch {
	font-family: WinterDrink;
	margin-top: 100px;
	font-size: 40px;
}

/* PORTFOLIO */
#portfolio {
	width: 60%;
	margin: auto;
	margin-bottom: 70px;
	text-align: center;
	text-align: -webkit-center;
}

#portfolio h2 {
	text-align: center;
	text-align: -webkit-center;
}

.portfolio-item {
	margin-bottom: 30px;
	cursor: pointer;
	transition: 0.5s ease;
	position: relative
}
.portfolio-item:hover {
	transform: scale(1.05);
}

.portphoto {
	max-width: 100%;
    height: auto;
	border-radius: 20px;
}

.nsfwblur {
	filter: blur(10px)
}

.nsfw {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 30px;
	color: #E1315A;
	-webkit-text-stroke: 1px black;
}

#nsfwwarn {
	margin-bottom: 30px;
	color: #E1315A;
}

#nsfwwarn span {
	color: white;
	font-weight: bold;
}

#nsfwwarn span:hover {
	text-decoration: underline;
	cursor: pointer;
}

/* CONTACT */
#contact {
	width: 60%;
	margin: auto;
	margin-bottom: 70px;
	text-align: center;
}

#contactsection {
	width: 100%;
	padding-bottom: 20px;
}

#contactsection h2 {
	padding-top: 30px;
}

#contactsection p {
	font-size: 20px;
}

#contactsection .required {
	position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

#contactform {
	margin-top: 20px;
	text-align: left;
}

#contactform .form-group {
	width: 85%;
	margin: auto;
}

#contactform label {
	color: #E1315A;
	font-weight: bold;
}

#contactform input, #contactform textarea {
	width: 100%;
	margin-bottom: 20px;
	background-color: #f0f0f0;
	border: 0px;
	font-size: 20px;
}

#btnsubmit {
	padding: 12px;
	border: 1px solid #E1315A;
	border-radius: 25px;
	width: 100%;
	color: #E1315A;
	background: linear-gradient(to right, #E1315A 50%, white 50%);
    background-size: 200% 100%;
    background-position:right bottom;
    transition:all 0.5s ease;
	font-family: WinterDrink;
	font-size: 20px;
}

#btnsubmit:hover {
	background-position:left bottom;
	color: white;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #E1315A;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
	margin: auto;
	margin-bottom: 20px;
}

/* OFFERS */
#offerspromos {
	width: 60%;
	margin: auto;
	margin-bottom: 100px;
	text-align: center;
}

#offerspromos img {
	border: 3px solid #E1315A;
	margin-bottom: 20px;
}

#offerspromos p {
	color: #E1315A;
}

#offerspromos .tandc {
	color: white;
}

/* TERMS AND CONDITIONS */
#terms {
	width: 60%;
	margin: auto;
	padding-bottom: 200px;
}

#terms h2 {
	text-align: center;
	color: #E1315A;
	margin-bottom: 30px;
}

#terms h3 {
	margin-bottom: 10px;
}

#terms p {
	margin-bottom: 30px;
}

/* FOOTER */
#footer {
	width: 100%;
	height: 50px;
	position: fixed;
	background-color: #0c0c0c;
	margin: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

#socials {
	font-size: 35px;
	vertical-align: middle;
}

#socials a {
	margin-right: 10px;
}

a:link, a:visited, a:active, a:hover {
	color: #E1315A;
}

/* ANIMATIONS */
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

/* MEDIA QUERIES */
@media only screen and (max-width: 1000px) {
	#profilepic {
		width: 200px;
	}
	
	#about, #portfolio, #contact, #offerspromos {
		width: 80%;
	}
	
	#ebooktmb {
		width: 80%;
	}
}

@media only screen and (max-width: 700px) {
	#contactsection .row {
		display: inline-grid;
	}
	
	#letschat {
		padding-bottom: 70px;
	}
	
	#formfields {
		padding-top: 20px;
	}
	
	#terms {
		width: 85%;
	}
	
	#offerspromos img {
	       width: 100%;
	}
	
	#ebook {
		width: 80%;
	}
	
	#ebooktmb {
		width: 100%;
	}
	
	#ebook #kickstart {
		width: 100%;
	}
}














