html,
body {
	margin: 0;
	padding: 0;
}
body {
	background-color: var(--background);
	color: var(--onBackground);
	position: relative;
	width: 100%;
	height: 100vh;
	padding-top: var(--top-bar-height);
	box-sizing: border-box;
}

#mirror {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.image {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: var(--secondary);
}

#telegram {
	box-sizing: border-box;
	border: 1px solid var(--secondary);
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.topBar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 200px;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--glassySurface);
	color: var(--onSurface);

	min-height: var(--top-bar-height);
	width: 100%;

	box-shadow: 0 0 10px var(--primary);

	z-index: 2;
}

main {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	background-color: transparent;
	/* margin-top: var(--top-bar-height); */
	z-index: 1;
	position: relative;
}

.logo {
	width: 50px;
	position: fixed;
	top: 25px;
	left: 25px;
}

.mobile-menu {
	display: none;
}
.mobile-menu img {
	width: 50px;
}
.options {
	display: none;
	padding: 1rem;
	position: fixed;
	right: 0.5rem;
	top: 100px;
	box-shadow: 0 0 20px var(--primary);
	width: min-content;
	background-color: var(--glassySurface);
	transition: 0.5s ease;
}

.options:first-child {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.options:last-child {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.options a {
	width: 100%;
	text-align: center;
	margin: 0rem 1rem;
	transition: 0.5s ease;
}

.se {
	transform: rotate(180deg);
}
.se .card-content {
	transform: rotate(180deg) scale(0.8);
}

#projects {
	position: relative;
	height: 5px;
	/* margin: 0 10%; */
	width: 80%;
	background-color: var(--surface);
	border: 1px solid var(--onSurface);
	border-radius: 15px;
	margin: 100px 10%;
}
.projects {
	margin-top: 200px;
}

@media screen and (max-width: 580px) {
	.text-box {
		width: 90%;
		margin: 1rem;
	}
	#projects {
		margin: 0px 10%;
	}
	.projects {
		margin-top: 120px;
	}
}
