@charset "UTF-8";

body {
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	color: #FFF;
	background-color: #4f356e;
	background-size: cover;
	background-repeat: no-repeat;
	/* min-height: 100vh; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
	margin-top: 120px;
}

h1 {
 font-size: 2.5rem;
 font-weight: bold;
}

.home_wrapper .container {
	position: relative;
}

.container {
	width: 950px;
	margin: 0 auto;
	text-align: center;
}

.hashtag {
	text-align: center;
	margin-bottom: 10vh;
}

.bar-container {
	border: 2px solid white;
	padding: 5px;
	display: flex;
	gap: 5px;
	width: fit-content;
	margin: 0 auto;
}

.bar-segment {
	width: 20px;
	height: 40px;
	background-color: transparent;
	border: 2px solid white;
	transition: background-color 0.2s;
}

.bar-segment.active {
	background-color: white;
}

.site_logo {
	margin-top: 10vh;
}

/* Extra small devices (phones, portrait) */
@media only screen and (max-width: 320px) {
	.container {
		width: 280px;
	}
}

/* Small phones (320px to 375px wide) */
@media only screen and (min-width: 321px) and (max-width: 375px) {
	.container {
		width: 360px;
	}
}

/* Medium phones (376px to 425px wide) */
@media only screen and (min-width: 376px) and (max-width: 425px) {
	.container {
		width: 400px;
	}
}

/* Large phones / small tablets (426px to 600px wide) */
@media only screen and (min-width: 426px) and (max-width: 600px) {
	.container {
		width: 580px;
	}
}