* {
	font-family: Roboto, sans-serif;
}
body {
	background-color: #0a1540;
	color: #fff;
}
.container {
	margin: 0 auto;
	display: grid;
	justify-content: space-around;
	gap: 2rem;
	min-height: 100dvh;
}

.container {
	width: 100%;
	padding: 10px;
}
@media (min-width: 768px) and (max-width: 1023px) {
	.container {
		width: 90%;
		margin: 0 auto;
		gap: 3rem;
	}
	.row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}
@media (min-width: 1024px) {
	.container {
		width: 80%;
		max-width: 1337px;
		margin: 0 auto;
		gap: 4rem;
	}

	.row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
	.first-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.column {
		display: grid;
		grid-template-columns: auto 1fr;
	}
}
header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-height: 80px;
}

.some-container > a > svg > path {
	fill: inherit;
}

.some-container {
	display: flex;
	justify-content: space-around;
	margin: auto;
	margin-right: 0;
	gap: 1rem;
}

.some-container > img {
	border: 2px solid #f23a1d;
	border-radius: 5px;
}

.row,
.first-row {
	gap: 2rem;
}
.row {
	display: grid;
}
.first-row > div {
	display: flex;
	flex-direction: column;
}

.profile-copy a,
h2 {
	color: #00cacf;
}
h2 {
	font-size: 1rem;
}
.logo {
	max-height: 55px;
}
.profile-img {
	border-radius: 100%;
	max-width: 100%;
	max-width: 20dvh;
}

.column {
	gap: 1rem;
}
img {
	max-width: 100%;
}
footer {
	display: grid;
	justify-content: space-between;
	grid-auto-flow: column;
	align-items: end;
	margin-top: 2rem;
}
footer > a, footer > p {
	color: gray;
	text-decoration: none;
	margin: 2rem 0;
}