/* all the universal stuffs goes after this */
* {
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	margin: 0;
	background-color: black;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* afll the header stuffs goes after this */
header {
	flex: 1;
	text-align: center;
	margin: 0;
	padding: 1em;
}

.logo-img {
	width: 206.46px;
	height: 64.16px;
	display: block;
	margin: 0 auto;
}

/* afll the body stuffs goes after this */
main {
	flex: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #000000;
}

/* main section spacers */
#content-spacer {
	flex: 8;
}

#middle-container {
	flex: 4;
}

#icons-container {
	flex: 8;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.email-input {
	display: none;
	flex-wrap: nowrap;
	flex-direction: column;
	box-sizing: border-box;
	z-index: 100;
	width: 345px;
	height: 48px;
	margin: 0 !important;
	padding: 0 !important;
	border: 2px solid rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
}

.form-elements-wrapper {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
}

input[type="email"] {
	margin: 0 !important;
	padding: 0;
	padding-left: 0.5em;
	padding-top: 0.3em;
	color: #fff;
	width: 285px;
	height: 44px;
	border: none;
	font-size: 16px;
	outline: none;
	background-color: transparent;
}

input[type="email"]::placeholder {
	margin: 0;
	padding: 0;
	color: white;
	font-family: courier;
	font-size: 20px;
}

button {
	margin: 0;
	padding: 0 !important;
	margin-left: 0.5em;
	z-index: 100;
	width: 48px;
	height: 44px;
	border: none;
	background-color: transparent;
}

.submit-button-image {
	margin: 0;
	padding: 0;
	padding-top: 0.2em !important;
	width: 35px;
	height: 24px;
	border: none;
	background-color: transparent;
}

.email-error {
	display: none;
	color: rgba(242, 18, 18, 0.861);
	font-family: 'Courier';
	font-style: normal;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.email-success {
	display: none;
	color: rgb(127, 241, 177);
	font-family: 'Courier';
	font-style: normal;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.agreement {
	color: rgb(255, 255, 255);
	font-family: 'Courier';
	font-style: normal;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: 100;
	text-align: center;
}

/* for the text animation */
.div-block {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
}

.animation-text {
	margin-top: auto;
	opacity: 1;
	color: #fff;
	font-size: 128px;
	font-family: Helvetica;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: opacity 0.5s linear;
	transform: translate(-50%, -50%);
}

.text.fade {
	opacity: 0;
}

/* for the icons */
.icons {
	margin: 0 5px;
	width: 38px;
	height: 30px;
}

.icons:hover {
	opacity: 0.8;
}

.icons img {
	width: 100%;
	height: 100%;
}


/* afll the footer stuffs goes after this */
footer {
	flex: 1;
	text-align: center;
	margin: 0;
	padding: 0;
}

.rights {
	margin: 0;
	padding: 0;
	font-family: 'Courier';
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
	height: 56px;
}


/* responsive stuffs go here*/
@media (max-width: 900px) {
	.logo-img {
		width: 200px;
		height: 55px;
	}

	.animation-text {
		font-size: 119px;
	}

	.rights {
		font-size: 18px;
		line-height: 24px;
		height: 54px;
	}

	.icons {
		margin: 0 5px;
		width: 35px;
		height: 27px;
	}
}

@media (max-width: 850px) {
	.logo-img {
		width: 190px;
		height: 50px;
	}

	.animation-text {
		font-size: 110px;
	}

	.rights {
		font-size: 16px;
		line-height: 20px;
		height: 52px;
	}
}

@media (max-width: 780px) {
	.logo-img {
		width: 190px;
		height: 50px;
	}

	.animation-text {
		font-size: 105px;
	}

	.rights {
		font-size: 16px;
		line-height: 20px;
		height: 50px;
	}

	.icons {
		margin: 0 5px;
		width: 32px;
		height: 24px;
	}
}

@media (max-width: 740px) {
	.animation-text {
		font-size: 98px;
	}
}

@media (max-width: 690px) {
	.animation-text {
		font-size: 96px;
	}
}

@media (max-width: 680px) {
	.animation-text {
		font-size: 93.9px;
	}
}

@media (max-width: 660px) {
	.animation-text {
		font-size: 92px;
	}
}

@media (max-width: 648px) {
	.animation-text {
		font-size: 90px;
	}
}

@media (max-width: 634px) {
	.animation-text {
		font-size: 80px;
	}
}

@media(max-width: 600px) {
	.logo-img {
		width: 190px;
		height: 56px;
	}

	.animation-text {
		display: none;
	}

	.rights {
		font-size: 14px;
		line-height: 18px;
		height: 50px;
	}
}

@media(max-width: 400px) {
	.rights {
		font-size: 14px;
		line-height: 18px;
		height: 45px;
		padding: 0 1.2em;
	}
}

@media(max-width: 380px) {
	.logo-img {
		width: 150px;
		height: 50px;
	}

	.email-input {
		width: 325px;
		height: 48px;
	}

	input[type="email"] {
		width: 258px;
		height: 40px;
		font-size: 16px;
	}

	input[type="email"]::placeholder {
		font-size: 18px;
	}

	button {
		width: 59px;
		height: 44px;
	}

	.rights {
		font-size: 12px;
		line-height: 16px;
		height: 42px;
		padding: 0 1.1em;
	}

	.icons {
		margin: 0 5px;
		width: 30px;
		height: 22px;
	}
}

@media(max-width: 350px) {
	.logo-img {
		width: 150px;
		height: 45px;
	}

	.email-input {
		width: 300px;
		height: 48px;
	}

	input[type="email"] {
		width: 242px;
		height: 40px;
		font-size: 16px;
	}

	input[type="email"]::placeholder {
		font-size: 20px;
	}

	.agreement {
		font-size: 11px;
	}

	.email-error {
		font-size: 15px;
	}

	.email-success {
		font-size: 15px;
	}

	button {
		width: 50px;
		height: 44px;
	}

	.rights {
		font-size: 12px;
		line-height: 16px;
		height: 40px;
		padding: 0 1em;
	}
}

@media(max-width: 320px) {
	.logo-img {
		width: 140px;
		height: 40px;
	}

	.email-input {
		width: 290px;
		height: 48px;
	}

	input[type="email"] {
		width: 225px;
		height: 40px;
		font-size: 16px;
	}

	input[type="email"]::placeholder {
		font-size: 20px;
	}

	.agreement {
		font-size: 10px;
	}

	.email-error {
		font-size: 14px;
	}

	.email-success {
		font-size: 14px;
	}

	button {
		width: 57px;
		height: 44px;
	}

	.rights {
		font-size: 10px;
		line-height: 14px;
		height: 40px;
		padding: 0 1em;
	}
}

@media(max-width: 300px) {
	.logo-img {
		width: 135px;
		height: 40px;
	}

	.email-input {
		width: 260px;
		height: 45px;
	}

	input[type="email"] {
		width: 202px;
		height: 40px;
		font-size: 16px;
	}

	input[type="email"]::placeholder {
		font-size: 20px;
	}

	.agreement {
		font-size: 10px;
	}

	.email-error {
		font-size: 13px;
	}

	.email-success {
		font-size: 13px;
	}


	button {
		width: 50px;
		height: 42px;
	}

	.rights {
		font-size: 13px;
		line-height: 14px;
		height: 37px;
		padding: 0 0.8em;
	}
}

@media(max-width: 320px) {
	.logo-img {
		width: 140px;
		height: 40px;
	}

	.email-input {
		width: 290px;
		height: 48px;
	}

	input[type="email"] {
		width: 225px;
		height: 40px;
		font-size: 16px;
	}

	input[type="email"]::placeholder {
		font-size: 20px;
	}

	.agreement {
		font-size: 10px;
	}

	.email-error {
		font-size: 12px;
	}

	.email-success {
		font-size: 12px;
	}

	button {
		width: 57px;
		height: 44px;
	}

	.rights {
		font-size: 15px;
		line-height: 16px;
		height: 40px;
		padding: 0 1em;
	}
}

@media(max-width: 300px) {
	.logo-img {
		width: 130px;
		height: 36px;
	}

	.email-input {
		width: 240px;
		height: 40px;
	}

	input[type="email"] {
		width: 192px;
		height: 36px;
		font-size: 12px;
	}

	input[type="email"]::placeholder {
		font-size: 18px;
	}

	.agreement {
		font-size: 8px;
	}

	.email-error {
		font-size: 11px;
	}

	.email-success {
		font-size: 11px;
	}

	button {
		width: 40px;
		height: 36px;
	}

	.rights {
		font-size: 13px;
		line-height: 14px;
		height: 37px;
		padding: 0 0.8em;
	}
}

@media(max-width: 250px) {
	.logo-img {
		width: 120px;
		height: 32px;
	}

	.email-input {
		width: 220px;
		height: 40px;
	}

	input[type="email"] {
		width: 174px;
		height: 36px;
		font-size: 12px;
	}

	input[type="email"]::placeholder {
		font-size: 18px;
	}

	.agreement {
		font-size: 8px;
	}

	.email-error {
		font-size: 10px;
	}

	.email-success {
		font-size: 10px;
	}

	button {
		width: 38px;
		height: 36px;
	}

	.rights {
		font-size: 11px;
		line-height: 12px;
		height: 34px;
		padding: 0 0.6em;
	}
}

@media(max-width: 220px) {
	.logo-img {
		width: 110px;
		height: 28px;
	}

	.email-input {
		width: 186px;
		height: 38px;
	}

	input[type="email"] {
		width: 143px;
		height: 34px;
		font-size: 12px;
	}

	input[type="email"]::placeholder {
		font-size: 18px;
	}

	.agreement {
		font-size: 7px;
	}

	.email-error {
		font-size: 9px;
	}

	.email-success {
		font-size: 9px;
	}

	button {
		width: 35px;
		height: 34px;
	}

	.rights {
		font-size: 10px;
		line-height: 11px;
		height: 32px;
		padding: 0 0.4em;
	}
}

@media(max-width: 210px) {
	.logo-img {
		width: 110px;
		height: 28px;
	}

	.email-input {
		width: 190px;
		height: 38px;
	}

	input[type="email"] {
		width: 149px;
		height: 34px;
		font-size: 12px;
	}

	input[type="email"]::placeholder {
		font-size: 18px;
	}

	.agreement {
		font-size: 8px;
	}

	.email-error {
		font-size: 8px;
	}

	.email-success {
		font-size: 8px;
	}

	button {
		width: 33px;
		height: 34px;
	}

	.rights {
		font-size: 10px;
		line-height: 11px;
		height: 32px;
		padding: 0 0.4em;
	}
}