* {
	box-sizing: border-box;
}

html {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: whitesmoke;
	overflow-x: hidden;
	font-family: Verdana, sans-serif;
	font-size: 1rem;
	line-height: 1.8rem;
}
.logo {
	display: flex;
	margin-top: 10px;
}
.logo h1 {
	color: rgb(43, 43, 43);
}
.logo img {
	margin: 0 auto;
	width: 100px;
	height: 100px;
	margin-top: -14px;
}
.container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 5px;
	margin-bottom: 25px;
}

/* Loader */
.loader {
	background-color: whitesmoke;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 10;
}

/* Navigation */
.navigation-container {
	position: fixed;
	top: 0;
}
.navTitle {
	display: block;
}

.navigation-items {
	display: flex;
	justify-content: center;
}

.background {
	background: whitesmoke;
	position: fixed;
	right: 0;
	width: 100%;
	height: 160px;
	z-index: -1;
}
.clickable {
	color: dodgerblue;
	cursor: pointer;
	user-select: none;
	margin: 0;
}
.clickable:hover {
	color: rgb(0, 104, 208);
}

/* Images Container */
.images-container {
	width: 800px;
	margin-top: 150px;
}

.card {
	background: white;
	margin: 10px 10px 20px;
	border-radius: 5px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}

.card:hover {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-img-top {
	width: 100%;
	height: auto;
	border-radius: 5px 5px 0 0;
}

.card-body {
	padding: 20px;
}

.card-title {
	margin: 10px auto;
	font-size: 24px;
}

/* Save Confirmation */
.save-confirmed {
	background: dodgerblue;
	padding: 8px 16px;
	border-radius: 5px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	position: fixed;
	bottom: 25px;
	right: 50px;
	color: whitesmoke;
}
.cta {
	background: dodgerblue;
	color: white;
	display: block;
	width: 190px;
	text-align: center;
	border-radius: 10px;
	padding: 10px;
	margin-top: 10px;
}
.cta:hover {
	color: dodgerblue;
	background: white;
	border: 2px solid dodgerblue;
}
.danger {
	background: red;
}
.danger:hover {
	color: red;
	background: white;
	border: 2px solid red;
}
/* loader */
.loader2 {
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 15px;
	transition: opacity 0.3s ease-in;
	margin: 0 auto;
}

.loader2.show {
	opacity: 1;
}

.circle {
	background-color: rgb(118, 118, 118);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 5px;
	animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
	animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
	animation-delay: 0.2s;
}

/* Hidden */
.hidden {
	display: none;
}
/* Large Smartphone (Vertical) */
@media screen and (max-width: 800px) {
	body {
		line-height: 1.4rem;
		font-size: 0.9rem;
		text-align: justify;
	}
	.logo h1 {
		display: none;
	}

	.images-container {
		width: 100%;
	}
	.save-confirmed {
		right: 25px;
	}

	.card-title {
		font-size: 20px;
	}
}
