:root {
	--black: #171717;
	--dark-gray: #1a1a1a;
	--image-gray: #222222;
	--white: #ffffff;
	--light-text: #f2f2f2;
	--accent: #00ff88;
}

.one-one {
	margin: 0;
	padding: 0;
	background-color: var(--black);
	color: var(--white);
	font-family: "Source Code Pro", monospace;
	line-height: 1;
}

.container-gagarin {
	max-width: 1600px;
	margin: 0 auto;
	padding: 60px 80px 40px 80px;
}

.gray-plate {
	background-color: #222222;
	border-radius: 16px;
	padding-left: 70px;
	position: relative;
	margin-bottom: 40px;
}

.code-icon {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 42px;
	height: 42px;
	z-index: 2;
}

.content-wrapper {
	display: flex;
	gap: 80px;
	align-items: center;
}

.text-content {
	flex: 1;
}

.text-content p {
	margin: 0 0 35px 0;
	font-size: 32px;
	color: var(--white);
}

.text-content .second-paragraph {
	margin-bottom: 45px;
}

.image-wrapper {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 550px;
}

.image-wrapper img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 16px;
}

.black-section {
	background-color: var(--black);
	padding: 25px 0 0 0;
}

.records-title {
	font-weight: bold;
	font-size: 32px;
	margin-bottom: 25px;
	color: var(--light-text);
}

.records-list {
	font-size: 28px;
	color: var(--light-text);
	list-style-type: disc;
	padding-left: 35px;
	margin: 0;
}

.records-list li {
	margin-bottom: 15px;
}

@media (max-width: 1600px) {
	.container {
		padding: 50px 60px;
	}
	.gray-plate {
		padding: 60px;
	}
}

@media (max-width: 1200px) {
	.container {
		padding: 40px;
	}
	.content-wrapper {
		gap: 60px;
	}
	.text-content p {
		font-size: 28px;
	}
	.image-wrapper {
		min-height: 450px;
	}
}

@media (max-width: 900px) {
	.content-wrapper {
		flex-direction: column;
	}
	.image-wrapper {
		width: 100%;
		min-height: 400px;
		margin-top: 40px;
	}
	.text-content p {
		font-size: 24px;
	}
	.records-title {
		font-size: 28px;
	}
	.records-list {
		font-size: 24px;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 30px;
	}
	.gray-plate {
		padding: 40px 30px;
	}
	.code-icon {
		width: 36px;
		height: 36px;
	}
	.text-content p {
		font-size: 20px;
	}
	.records-title {
		font-size: 24px;
	}
	.records-list {
		font-size: 20px;
	}
}
