*{
    box-sizing: border-box;
}

html { 
	width: 100%; 
	height: 100%; 
    scroll-behavior: smooth;
}

body { 
    margin: 0px; 
	padding: 0px;
	color: #fff; 
	font-family: sans-serif;
	background: #8E2DE2;
	background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2); 
	background: linear-gradient(to right, #4A00E0, #8E2DE2);
}

.container{
	width: 100%;
	margin: 0 auto;
	max-width: 1260px;
}

.content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.content span{
	color: #000;
	width: 48px;
	height: 48px;
	display: flex;
	background: #ffffff;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
}

.content .sub-text{
	color: #f9f9f9;
	text-align: center;
	opacity: 0.8;
}

.content small{
	opacity: 0.4;
}