:root {
	--welcome-bg: #eeeeef;
	--welcome-circle-tint: #777778;
	--welcome-mask-tint: #eeeeef;
}

[data-theme="dark"] {
	--welcome-bg: #111112;
	--welcome-circle-tint: #8a8a8b;
	--welcome-mask-tint: #111112;
}

body,
html {
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: var(--welcome-bg);
	font-family: sans-serif;
}

.main-container {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-color: var(--welcome-bg);
}

.circle-container {
	position: absolute;
	width: 100px;
	height: 100px;

	will-change: transform;
}

.circle-image {
	width: 100%;
	height: 100%;
	background-color: var(--welcome-circle-tint);
	        mask-image: url("assets/images/circle.png");
	        mask-position: center;
	        mask-size: contain;
	        mask-repeat: no-repeat;
	-webkit-mask-image: url("assets/images/circle.png");
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
}

.mask-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--welcome-mask-tint);
	pointer-events: none;
	        mask-image: url("assets/images/pattern.png");
	        mask-position: center;
	        mask-size: auto;
	        mask-repeat: repeat;
	-webkit-mask-image: url("assets/images/pattern.png");
	-webkit-mask-position: center;
	-webkit-mask-size: auto;
	-webkit-mask-repeat: repeat;
}

.theme-toggle {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 100;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: #333;
	color: #fff;
	cursor: pointer;
}
