/* Don't display page titles */
.entry-title {
	display: none;
}

/* Centre content in header */
.site-header {
	justify-content: center;
}

.site-header .social-navigation {
	justify-self: center;
}

.site-header .main-navigation {
	justify-self: center;
}

/* Header Links to not be bold */
.main-navigation a {
	font-weight: normal;
}

/* Lessen the gap between header and content */
.site-main {
	padding-top: 0;
}

/* Modify header to be page wide, with black background */
#masthead {
	background: white;
	padding-top: 16px;
	padding-bottom: 16px;
}

.entry-content > .alignwide,
.entry-content > .alignwide.wp-block-jetpack-gif,
.entry-content > .alignwide.wp-block-jetpack-tiled-gallery,
body:not(.fse-enabled) #masthead,
body:not(.fse-enabled) #colophon {
	width: 100%;
	max-width: 100%;
}

/* Footer background and centering content */
#colophon {
	background: white;
}

.widget-area {
	justify-content: center;
	margin-bottom: 0;
}

.site-footer {
	padding-top: 16px;
	padding-bottom: 16px;
/* Footer Text Color */
	color: #7B1236;
}

.site-info {
	text-align: center;
/* Site info Text Color */
	color: #7b1236;
}

/* Header Text Color */
.site-header .main-navigation > div > ul > li > a,
.site-header .main-navigation > div > ul > li.current-menu-item > a {
	color: #7b1236;
}

/* Header hover color */
.site-header .main-navigation > div > ul > li:hover > a,
.site-header .main-navigation > div > ul > li.current-menu-item > a {
	color: black;
}

.social-navigation a {
	color: #7b1236;
}

.social-navigation a:hover {
	color: #000000;
}

/* Mobile phone menu background */
.mobile-nav-side .site-header #site-navigation.main-navigation .woocommerce-menu-container, .mobile-nav-side .site-header #site-navigation.main-navigation > div {
	background: white;
}

/* Cleaner menu spacing on mobile */
.mobile-nav-side .has-menu {
	grid-column-gap: 40px;
}

/* Change mobile button colors */
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle-cart[for="woocommerce-toggle"].button, .mobile-nav-side .site-header #site-navigation.main-navigation #toggle-menu {
	background: black;
	color: white;
}

/* Social button color */
.social-navigation a {
	color: black;
}

/*fix image resizing too big*/
.wp-block-media-text__media img, .wp-block-media-text__media video {
    max-width: 600px;
}

.wp-block-media-text {
	align-items: center;
	justify-content: center;
    grid-template-columns: fit-content(100%) fit-content(40%);
}

.site-header .main-navigation > div > ul {
    justify-content: center;
}

#page {
    display: flex;
    flex-direction: column;
	min-height: 100vh;
}
.admin-bar #page{
	min-height: calc(100vh - 32px);
}
#page .site-content{
    flex-grow: 1;
}