html {
	background-color: #000;
	color: #fff;
	font-family: 'Poppins';
	font-size: 20px;
	line-height: 33px;
	hyphens: auto;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

main {
	display: block;
	padding-top: 3%;
	padding-left: 7%;
	padding-right: 7%;
	max-width: 1920px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px;
	margin-bottom: 194px;
}

.row.center {
	justify-content: center;
}

.column1 {
	position: relative;
	width: 100%;
}

.column2 {
	position: relative;
	width: 100%;
}

h1 {
	font-weight: bold;
	font-size: 50px;
	line-height: 60px;
	margin-top: 0;
}

.neon {
	text-shadow: 0 0 5px white,
                 0 0 10px white,
                 0 0 20px #01DFC7,
                 0 0 40px #01DFC7,
                 0 0 60px #01DFC7,
                 0 0 90px #01DFC7,
                 0 0 120px #01DFC7,
                 0 0 160px #01DFC7;
}

.container {
	position: relative;
}

.withLine {
	padding-left: 0;
}
.withLine::before {
	display: none;
	content: '';
	width: 96px;
	height: 5px;
	position: absolute;
	top: 14px;
	left: 0;
	background-color: #01DFC7;
}

.accent,
.accent a{
	color: #01DFC7;
	font-weight: bold;
}

img {
	width: 100%;
	height: auto;
	border-radius: 31px;
}

img.mouse {
	position: absolute;
	bottom: -41%;
	left: 9%;
	width: 50%;
}


#logo {
	position: relative;
    width: 80px;
	margin-left: 45%;
}



@media (min-width: 576px) {
    
}

@media (min-width: 769px) {
    h1 {
		font-size: 80px;
		line-height: 100px;
		margin-top: 0.8em;
	}
}

@media (min-width: 1025px) {
    
}

@media (min-width: 1200px) {
    .column1 {
		width: 46.5%;
	}
	.column2 {
		width: 40%;
	}
	.withLine {
		padding-left: 138px;
	}
	.withLine::before {
		display: block;
	}
	#logo {
		width: 100px;
	}
}

@media (min-width: 1700px) {
    h1 {
		font-size: 120px;
		line-height: 150px;
	}
}