.content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.content h1 {
	font-size: 4.2em;
	text-align: center;
	margin: 10px 30px;
}

.content p {
	font-size: 1.2em;
	opacity: 0.8;
	text-align: center;
	margin: 1em 30px 3rem;
}

.buttonContainer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 30px;
	margin-top: 10px;
	justify-content: center;
}

.content .sep {
	width: 80%;
	max-width: 650px;
	height: 2px;
	opacity: 0.6;
	background: linear-gradient(90deg, #fff0, #fff, #fff0);
	margin-bottom: 1em;
}

.content .buttn {
	border: 1px solid white;
	padding: 1em 2em;
	margin: 0 1rem;
	cursor: pointer;
	border-radius: 1.3em;
    transition: .4s ease-in-out ;
    background-color: #ccc1;
    scale: 1.12;
	width: 200px;
}

.uwu {
	color: white;
    font-weight: 600;
	font-size: 1em;
	position: relative;
	overflow: hidden;
	visibility: hidden;
}

.uwu::after,
.uwu::before {
	content: attr(data-content);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    opacity: .8;
	visibility: visible;
	/* transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity .6s cubic-bezier(.77,0,.175,1); */
    transition: .3s ease-out;

}

.uwu::after {
	transform: translateY(100%);
    font-weight: 700;
    opacity: 1;
}

.buttn:hover .uwu::after {
    transform: translateY(0);
    color: #000;
}

.buttn:hover .uwu::before {
    transform: translateY(-100%);
    color: #000;
    opacity: 0;
}

.buttn:hover {
    border-radius: 3em;
    background: #ccc;
}


@media screen and (max-width: 554px) {
    .buttonContainer {
		display: flex;
		gap: 40px;
    }

	.content p {
		margin-bottom: 2.5rem;
	}
}


.sponsorsContainer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 30px;
	padding: 2em 0;
	margin-bottom: 2em;
	width: 100%;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin-bottom: 3.5em;
}

.sponsorsContainer h2 {
	font-size: 2.7em;
	margin-top: 1.5em;
	margin-bottom: 0em;
}

.sponsorsContainer .sponsorss {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 30px;
	margin-top: 1.5em;
	justify-content: center;
	margin-bottom: 2em;
}

.sponsorsContainer .sponsorss a {
	display: flex;
	flex-direction: column-reverse;
	color: white;
	font-family: 'Poppins', sans-serif;
	font-size: 1.4em;
	gap: 12px;
	height: 200px;
	text-decoration: none;
	margin-top: 10px;
	border-radius: 10px;
	transition: .3s ease-out all;
	text-align: center;
	background-color: #ddd;
	padding: 30px;
}

.sponsorsContainer .sponsorss a:hover {
	scale: 1.02;
	box-shadow: 0 0 20px 0 rgba(250, 250, 250, 0.4);
}


.sponsorsContainer .sponsorss a img {
	border-radius: 15px;
	height: 100%;
	width: auto;
	background-color: #ddd;
}