

html, body {
	padding: 0;
	margin: 0;
	font-family: Arial;
	overflow-x: hidden;
}
body {
	background: url('../assets/bg.webp') no-repeat;
	background-size:cover;
	background-position:bottom center;
	height: 100vh;
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.container {
	max-width: 900px;
    padding: 15px;
    margin: 20px auto;
    position: relative;
}
.mainblock {
	margin: 60px 0;
    max-width: 450px;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}
p {
	padding: 10px 0;
	font-family: "Thinkaction";
    font-size: 35px;
	text-align:center;
    margin: 30px 0;
    margin-top: 0;
    margin-bottom: 60px;
    line-height: 50px;
    color: #000;
}
.imghide {
	display:block;
	padding: 10px 30px;
    font-size: 35px;
    margin: 30px auto;
    margin-top: 0;
    margin-bottom: 60px;
    width: 150px;
}
button {
    margin: auto;
    border-radius: 100px;
	font-family:"Century Gothic";
    font-size: 36px;
    text-transform: uppercase;
    background: #000;
    border: 2px solid;
    color: #fff;
    transition: .3s linear;
    padding: 5px 70px;
    cursor: pointer;
    display: none;
}
button:hover {
    border: 2px solid #000;
	color: #000;
	background-color: transparent;
	text-decoration:none
}
a,a:hover,a:link {
	text-decoration:none
	
}
.girl {
	position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    z-index: -1;
}
@media only screen and (max-width: 420px) {
	.mainblock {
		margin: 30px auto;
	}
	button {
		margin-left: 0;
	}
	.girl {
    left: 50%;
    width: 200px;
    
    transform: translateX(-50%);
    opacity: .5;
	}
}