/* These are the fonts being imported directly to the css file */
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100&family=Raleway:wght@100&display=swap');

body {
	margin: 0;
	min-height: 100vh;
	background-image: url("/images/background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	background-color: #000000;
	font-family: 'Raleway', sans-serif;
	color: rgb(214, 214, 214);
	display: flex;
	justify-content: center;
	align-items: center;
}

.centerbox {
	margin-top: 20px;
	margin-bottom: 20px;
	width: 75%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	background: #131313b0;
	border-radius: 25px;
	min-width: 700px;
	max-width: 1400px;
	transition: width 0.5s;
	font-size: 1.4rem;
}
.pfpimg {
	width: 400px;
	flex-grow: 2;
	height: 700px;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	object-fit: cover;
	object-position: 70% 15%;
}

.textbox {
	width: 520px;
	padding: 25px;
	flex-grow: 4;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* No classes required here, we just call the tags themselves */
h1 {
	font-family: 'Exo', sans-serif;
	font-size: 6rem;
	font-weight: 100;
	margin: 0px;
	color: rgb(204, 204, 204);
	text-transform: uppercase;
	letter-spacing: 0.65rem;
}

h2 {
	font-family: 'Exo', sans-serif;
	font-size: 1.2rem;
	font-weight: 162;
	font-style: italic;
	margin: 0px;
	color: rgb(204, 204, 204);
}

/* Here we call the class "textbox" which is the div and then the p tag inside of it */
.textbox p {
	line-height: 1.3;
}

.buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 10px;
	padding-top: 20px;
}

.bigbutton {
	background-color: rgb(71, 71, 71);
	border-radius: 15px;
	min-width: 440px;
	height: 60px;
	font-size: 2.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
	margin: 3px;
	padding: 20px;
}

.bigbutton:hover {
	background-color: #ff8f9e;
	padding: 23px;
	margin: 0px;
	transition: 0.2s;
}

.logoimgL {
	height: 90%;
	margin-right: 15px;
}	

.button {
	background-color: rgb(71, 71, 71);
	border-radius: 15px;
	width: 230px;
	height: 55px;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
	margin: 3px;
	padding: 0px;
}

.button:hover {
	background-color: #ff8f9e;
	padding: 3px;
	margin: 0px;
	transition: 0.2s;
}

a:link {
	color: white;
	text-decoration: none;
}

a:visited {
	color: lightgray;
	text-decoration: none;
}

.logoimg {
	height: 30px;
	margin-right: 10px;
}

@media screen and (max-width: 1600px) {
	.centerbox {
		width: 90%;
	}
}

@media screen and (max-width: 1077px) {
	.pfpimg {
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
		border-bottom-left-radius: 0px;
	}
	.centerbox {
		flex-direction: column;
		width: 90%;
		font-size: 1.6rem;
	}
	.pfpimg {
		width: 100%;
	}
	.textbox {
		width: 90%;
	}
}
