/* Reset all default styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--purple: #a36bff;
	--light-purple: #e6d7ff;
	--background: #0c0c0d;
	--cubetax: #92a99c;
}

body {
	background-color: var(--background);
	font-family: "Quicksand-Regular", sans-serif;
}

.container {
	max-width: 800px;
	width: 100%;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}

.header {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	margin: 15px 0;
	font-size: 14px;
}

.header p {
	text-transform: uppercase;
	font-family: "Quicksand-SemiBold", sans-serif;
}

.purple {
	color: var(--purple);
}

.icon {
	position: absolute;
	top: 0;
	left: 0;
	height: 230px;
}

.hero {
	margin: 100px 0;
	position: relative;
	display: flex;
	gap: 20px;
}

.logo {
	position: relative;
}

.hero-text {
	flex: 1;
}

.hero h3 {
	font-size: 100px;
	font-weight: 700;
	line-height: 80px;
	font-family: "Quicksand-Bold";
	text-transform: uppercase;
}

.hero h4 {
	color: var(--light-purple);
	font-size: 100px;
	line-height: 80px;
	font-family: "Quicksand-Regular";
}

.hero p {
	font-size: 20px;
	line-height: 19px;
	font-family: "Quicksand-Regular";
	margin-top: 20px;
}

.hero-text-align {
	flex: 1;
	width: fit-content;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-left: 20%;
}

.hero-dot {
	border-radius: 50%;
	position: absolute;
}

.hero-dot-1 {
	height: 14px;
	width: 14px;
	right: 35%;
    top: -25%;
	background: var(--light-purple);
}

.hero-dot-2 {
	width: 8px;
	height: 8px;
	left: 0;
	top: 10%;
	background: var(--light-purple);
}

.hero-dot-3 {
	width: 17px;
	height: 17px;
	background: var(--purple);
	bottom: 0%;
	left: 35%;
}

.hero-dot-4 {
	width: 8px;
	height: 8px;
	background: var(--light-purple);
	bottom: -20%;
	right: 25%;
}

.hero-star {
	position: absolute;
	right: 0;
	top: 10%;
}

.divider {
	height: 20px;
	background-image: url("assets/images/wavy-line.svg");
	background-position: center;
	background-repeat: repeat-x;
}

.about {
	margin-top: 60px;
	margin-bottom: 40px;
}

.about h4 {
	text-align: center;
	font-size: 20px;
	font-family: "Quicksand-SemiBold";
	margin-bottom: 15px;
	color: var(--light-purple);
}

.about p {
	font-size: 16px;
	text-align: center;
	color: var(--purple);
	font-family: "Quicksand-Light";
	margin-bottom: 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.spinning-element {
	animation: spin 20s linear infinite;
}

.my-work {
	margin-top: 75px;
	margin-bottom: 170px;
}

.my-work h3 {
	color: var(--purple);
	text-align: center;
	font-family: "Quicksand-SemiBold";
	font-size: 30px;
}

.my-work-items-container {
	display: flex;
	margin-top: 90px;
}

.my-work-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.my-work-item h5 {
	text-align: center;
	font-family: "Quicksand-SemiBold";
	font-size: 20px;
	margin-bottom: 30px;
}

.my-work-item:first-child {
	color: var(--light-purple);
}

.my-work-item:last-child {
	color: #d4d5cb;
}

.my-work-item img {
	margin-bottom: 40px;
}

.button-link {
	display: block;
	padding: 10px 50px;
	text-decoration: none;
	text-align: center;
	color: black;
	border-radius: 60px;
	transition: background-color 0.3s ease;
}

.coloring {
	background-color: white;
}

.cubetax {
	background-color: var(--cubetax);
}

.button-link:hover {
	background-color: var(--purple);
}

.footer {
	margin-top: 75px;
	margin-bottom: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer p {
	color: var(--light-purple);
	text-align: center;
	font-family: "Quicksand-Regular";
	font-size: 20px;
}

.footer a {
	display: block;
	width: fit-content;
	color: var(--purple);
	margin-top: 15px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	/* Your mobile styles here */
	.hero {
		flex-direction: column;
		align-items: center;
	}
	.hero-text-align {
		margin-left: 20px;
	}
	.my-work-items-container {
		flex-direction: column;
		gap: 50px;
	}
	.my-work {
		margin-bottom: 70px;
	}

	.container {
		padding: 0 5%;
	}

	.hero h3 {
		font-size: 80px;
	}

	.hero h4 {
		font-size: 80px;
	}
}
