:root {
	scroll-behavior: auto;
}

html,
body {
	min-height: 100%;
}

html {
	font-size: 62.5%;
	overflow: overlay;
	overflow-x: hidden;
}

*:focus-visible {
	outline: none;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0 auto;
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	padding: 0;
	min-height: 100vh;
	background-color: #f8fbff;
	color: #003b5c;
	z-index: 1;
	padding: 80px 0;

	@media screen and (min-width: 768px) {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
}

body::before {
	content: "";
	background-image: var(--building-image);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	right: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	opacity: 0.1;

	@media screen and (min-width: 768px) {
		opacity: 0.5;
		width: 80%;
	}
}

body::after {
	content: "";
	background: #f8fbff;
	background: linear-gradient(
		90deg,
		rgba(248, 251, 255, 1) 50%,
		rgba(248, 251, 255, 0) 100%
	);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	right: 0;
	opacity: 0.1;

	@media screen and (min-width: 768px) {
		opacity: 1;
	}
}

.content {
	max-width: 500px;
}

h1 {
	font-family: "Playfair Display", serif;
	font-size: 4.5rem;
	color: #003b5c;
	margin-bottom: 10px;
}

p {
	font-size: 1.6rem;
	margin-bottom: 30px;
}

.subtitle {
	font-size: 2.2rem;
	color: #f0b323;
	font-weight: 500;
}

.logo-placeholder {
	width: 80px;
	height: 80px;
	background-color: white;
	border-radius: 100%;
	margin-bottom: 20px;
}

a {
	font-size: 1.6rem;
	transition: color 0.3s ease-in-out;
}

a:hover,
a:focus-visible {
	color: #f0b323 !important;
}

.logo-placeholder img {
	width: 100%;
	height: 100%;
}

.social-icons a {
	color: #007681;
	margin-right: 15px;
	text-decoration: none;
	font-weight: 500;
}

.social-icons a svg {
	fill: #007681;
	height: 30px;
	transition: fill 0.3s;
}

.social-icons a:hover svg {
	fill: #f0b323;
}
