@import "../styles.css";

.container-main {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.profile {
	display: flex;
	max-width: 800px;
	gap: var(--l-spacing);
	padding: var(--spacing);
	border: var(--simple-border);

	.image-wrapper {
		align-self: start;
	}

	.basic {
		flex: auto;
		display: flex;
		flex-direction: column;
		overflow-wrap: break-word;
	}

	a {
		text-decoration: none;
	}
}

