@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
body {
	height: 100vh;
	margin: 0;
    overflow-y: hidden;
    display: flex;
    flex-direction: row-reverse;
}

.background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blurb {
	margin-bottom: auto;
	z-index: 2;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

.blurb h1 {
	padding: 25px;
	margin: 0;
	font-family: MontSerrat;
	color: grey;
	font-weight: 400;
	font-size: 45px;
}

.mobile-bar {
	display: none;
}

.bar {
	border-radius: 0 0 0 0;
	height: 100%;
	left: 0;
	top: 0;
	width: 400px;
	position: relative;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.bar .title {
	font-size: large;
	font-family: Montserrat;
	font-weight: 600;
	text-align: center;
	margin: 25px 0;
	z-index: 2;
}

.bar .title a {
	text-decoration: none;
	color: black;
	transition: color ease 0.1s;
	height: 0;
}

.bar .title a:hover {
	color: grey;
}

.bar .links {
	display: flex;
	height: 55px;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding-bottom: 25px;
	z-index: 2;
}

.bar .links a {
    height: 45px;
}

.bar .links img {
	margin: 0 10px;
	width: 45px;
	height: 45px;
	transition: transform ease 0.2s;
}

.bar .links img:hover {
	transform: scale(1.25);
}

@media screen and (max-width: 820px) {
    body {
        height: 100%;
        display: block;
    }
    .background {
        position: absolute;
    }
    .bar {
        position: absolute;
    }
	.blurb {
		display: none;
	}
	.mobile-bar {
		display: block;
		width: 100%;
		height: 55px;
		position: absolute;
		z-index: 2;
		background-color: #fff;
		top: 0;
	}
	.bar {
		top: auto;
		bottom: 0;
		height: 100%;
		width: 100%;
		justify-content: space-between;
		background: none;
		flex-direction: column-reverse;
	}
	.bar .links {
        background-color: #fff;
        padding: 10px 0;
	}
	.bar .links img:hover {
		transform: none;
	}
	.bar .title {
		margin: 15px 0;
	}
	.bar .title a {
		color: white;
	}
	.bar .title a:hover {
		color: white;
	}
}
