* {
	padding: 0;
	box-sizing: border-box;
	margin: 0;
}

html {
	background: #000;
	touch-action: none;
	--weblit-user-select: none;
}

body {
	position: fixed;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	background-image: url('./img/bg.png');
	font-family: 'Manrope';
	display: grid;
    align-items: center;
    overflow-y: auto;
}

header {
	animation: open-h 0.5s ease;
}

.logo {
	width: 415px;
    height: 300px;
}

.btn {
	width: 259px;
    height: 149px;
}

.active {
	cursor: pointer;
	opacity: 1;
	transition: all 0.3s;
}

.active:hover {
	scale: 1.03;
}

.new {
	animation: new 1s ease;
}

.holder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

input {
	min-width: 400px;
	padding: 15px 15px;
    width: 100%;
    border: 2px solid #3c3c3c;
    font-size: 20px;
    color: #fff;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 150%, #474747 0%, #212121 100%);
    font-family: 'Manrope';
    text-align: center;
}

input:focus {
	outline: none;
}

button {
	width: 100%;
    height: 60px;
    padding: 5px;
    border: 2px solid #3c3c3c;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 150%, #474747 0%, #212121 100%);
    font-size: 21px;
    font-family: 'Manrope';
}

span {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
}

h1 {
	color: #ffffff;
    font-family: 'MANROPE';
    font-size: 27px;
    text-align: center;
}

.ctr {
	display: none;
	gap: 25px;
}

.container {
	display: grid;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.inactive {
	display: none;
	cursor: not-allowed;
}

.inactive:hover {
	scale: 1;
}

#trick {
	animation: left-m 0.3s forwards;
}

#treat {
	animation: right-m 0.3s forwards;
}

#copy:hover {
	opacity: 0.6;
}

@keyframes open-h {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes new {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes left-m {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes right-m {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}


@media (width < 550px) {
	body {
		background-image: url('./img/mobile.png');
		padding-top: 30px;
		display: block;
	}

	.logo {
		width: 280px;
        height: 195px;
	}

	button {
		width: 100%;
        height: 50px;
        padding: 5px;
        border: 2px solid #3c3c3c;
        border-radius: 16px;
        background: radial-gradient(ellipse at 50% 150%, #474747 0%, #212121 100%);
        font-size: 18px;
        font-family: 'Manrope';
	}

	.btn {
		width: 189px;
    	height: 109px;
	}

	.holder {
		display: grid;
		align-items: center;
		justify-content: center;
		gap: 5px;
	}

	input {
		min-width: auto;
		padding: 11px 15px;
	    width: 100%;
	    border: 2px solid #3c3c3c;
	    font-size: 18px;
	    color: #fff;
	    border-radius: 16px;
	    background: radial-gradient(ellipse at 50% 150%, #474747 0%, #212121 100%);
	    font-family: 'Manrope';
	    text-align: center;
	}
}














