body {
	font-family: 'Elza';
	background-color: #D9D9D9;
	margin: 0;
	padding: 0;
}

.wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
}

* {
	box-sizing: border-box;
}

.container {
	margin: auto;
	background: linear-gradient(151.57deg, #3A4A4E 11.17%, #111A1C 82.44%);
	border-radius: 30px;
	width: 100%;
	height: 100%;
	border: 10px solid #D9D9D9;
	overflow: hidden;
}

.inside {
	width: 100%;
	height: calc(100% - 20px);
	overflow-y: auto;
	gap: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	justify-content: space-between;
	align-items: center;

}

h1 {
	color: #F4F3E8;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	margin: 0;
	padding: 0;
	line-height: 1.2;
}

.contact {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-direction: column;
}

article h2 {
	color: #F6A22D;
	font-size: 14px;
	margin: 0 0 5px 0;
	font-weight: 400;
	text-align: center;
}

article p {
	color: #F4F3E8;
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	text-align: center;
}

article a {
	transition: .3s;
	text-decoration: none;
	color: #F4F3E8;
}

article a:hover {
	color: #F6A22D;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #59666A;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #F6A22D;
}

@media (min-width:600px) {

	.inside {
		gap: 30px;
	}
	.contact {
		flex-direction: row;
	}

	article h2 {
		text-align: left;
	}

	article p {
		text-align: left;
	}
}

@media (min-width:760px) {
	h1 {
		font-size: 44px;
	}
	.container {
		height: 100vh;
	}
	.inside {
		padding: 60px;
	}

	.contact {
		gap: 80px;
	}
}

@media (min-width:1024px) {
	.container {
		padding: 50px;
		border-radius: 40px;
	}

	.contact {
		gap: 100px;
	}

	article h2 {
		font-size: 18px;
	}

	article p {
		font-size: 18px;
	}
}

@media (min-width:1280px) {

	.contact {
		gap: 200px;
	}
}

@media (min-width:1400px) {
	.container {
		width: 100%;
		height: 100vh;
		border: 10px solid #D9D9D9;
		border-radius: 50px;
	}

	.inside {
		justify-content: space-between;
		align-items: center;
		height: 100%;
		padding: 0;
	}
}

@media (min-width:1900px) {
	.container {
		gap: 150px;
	}


	h1 {
		font-size: 64px;
	}

	.contact {
		gap: 260px;
	}
}