html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-style: normal;
}

a {
	text-decoration: none !important;
}

.container {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

#top-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	text-align: center;
	background-image: url("../assets/bg.jpg");
	box-shadow: inset 0 0 0 1000px rgba(33, 40, 48, 0.75);
}

#top-section header {
	position: absolute;
	top: 20px;
	text-align: center;
}

#top-section header a {
	position: relative;
	left: calc(50vw - 100px);
}

#image-logo {
	width: 200px;
}

#top-section h1 {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 65px;
	font-weight: 500;
	line-height: 1.15;
	text-transform: uppercase;
	margin-bottom: 0;
}

.short-line {
	width: 120px;
	height: 5px;
	margin: 10px auto;
	background-color: #9E926C;
}

#top-section p {
	color: #ffffff;
	letter-spacing: 0.05em;
}

.flat {
	border: 0;
	box-shadow: none;
}

#notify-button {
	color: white;
	width: 180px;
	height: 50px;
	margin: 10px auto;
	background-color: #9E926C;
	text-transform: uppercase;
}

footer {
	color: white;
	position: absolute;
	bottom: 20px;
	left: calc(50vw - 100px);
}

#modal_wrapper.overlay::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	background: #000;
	background: rgba(0,0,0,0.7);
}

#modal_window {
	display: none;
	z-index: 200;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 460px;
	overflow: auto;
	padding: 10px 20px;
	background: #fff;
	border: 5px solid #999;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#modal_wrapper.overlay #modal_window {
	display: block;
}
