/**
 * ----------------------------------------
 * Text Styling
 * ----------------------------------------
 */
.contact-right a:hover {
	color: var(--red) !important;
	text-decoration: none !important;
}
.party-h1 {
	color: var(--white);
	letter-spacing: 2px;
	text-transform: uppercase;
	word-break: normal;
	font-family: 'Press Start 2P';
	font-size: 40px;
	font-weight: 400;
	line-height: 45px;
}
.party-h2 {
	color: var(--white);
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Press Start 2P';
	font-size: 24px;
	font-weight: 400;
	line-height: 35px;
	margin-bottom: 10px;
}
.party-h4 {
	color: var(--white);
	text-transform: uppercase;
	padding-bottom: 5px;
	font-family: 'Rubik';
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}


/**
 * ----------------------------------------
 * Main Styling for Party Page
 * ----------------------------------------
 */
 .contact-wrapper {
	margin: 75px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.contact-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 75%;
	background: var(--space-black);
}
.contact-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 46%;
	max-width: 560px;
}
.contact-left {
	border: 2px solid var(--red);
	width: 50%;
}


/**
 * ----------------------------------------
 * Media Breakpoints
 * ----------------------------------------
 */
@media only screen and (max-width: 600px) {
.contact-wrapper {
	margin: 30px;
}
.contact-inner {
	flex-direction: column;
	width: 90%;
	margin-bottom: 20px;
}
.contact-left, .contact-right {
	width: 100%;
}
.contact-right {
	margin-bottom: 20px;
}
}


@media screen and (min-width : 601px) and (max-width : 900px) {
.contact-wrapper {
	margin: 40px;
	flex-direction: column;
	gap: 1ch;
}
.contact-inner {
	flex-direction: column;
	margin-bottom: 20px;
}
.contact-left, .contact-right {
	width: 100%;
}
.contact-right {
	margin-bottom: 30px;
}
}


@media screen and (min-width : 901px) and (max-width : 1200px) {
.contact-wrapper {
	margin: 50px;
}
.contact-inner {
	margin-bottom: 20px;
	width: 100%;
}
}


@media screen and (min-width : 1201px) and (max-width : 1500px) {
.contact-wrapper {
	margin: 80px;
}
.contact-inner {
	width: 100%;
}
}