@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
body{
	background-color: #7d5fff;
	padding: 0;
	margin: 0;
	font-family: "Comfortaa", sans-serif;
 	font-optical-sizing: auto;
}
ul{
	list-style: disclosure-closed;
}
.button {
    background-color: #ffffff;
    border: none;
    color: #7d5fff;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #fff;
}
.buttons{
	width: calc(100% - 150px);
	display: flex;
	flex-direction: column;
	margin: auto 0;
}
.button:hover {
    background-color: #7d5fff;
    color: #ffffff;
}
.container div{
	color: #ffffff;
	font-size: 18px;
}
.container{
	width: auto;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
.img-container{
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	z-index: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.right-qr{
	width: 150px;
	height: 150px;
	margin: auto;
	border-radius: 10px;
}
.desk-qr-btns{
	max-width: 400px;
	display: flex;
	margin: auto;
}
.right-img{
	max-width: 99%;
}
.first-slide{
	height: 99vh;
}
.text-content{
	width: 50%;
	margin: 50px 0;
}
h1{
	text-align: center;
	font-weight: 700;
}
.descr{
	margin: 50px 0;
	text-align: center;
}
.footer-slide{
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	margin-top: 70px;
	text-align: center;
	font-weight: 700;
}
.desktop-hide{
	display: none;
}
@media(max-width:1400px){
	.container{
		margin: 0 10px;
	}
}
@media(max-width:768px){
	.img-container{
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 100%;
		justify-content: center;
	}
	.buttons{
		width: calc(100% - 150px);
	}
	.img-container .right-qr{
		position: relative;
		width: 150px;
		height: 150px;
		margin: 20px auto;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}
	.mob-hide{
		display: none;
	}
	.text-content,.footer-slide{
		width: 100%;
	}
}