@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@800&display=swap');

body {
    display: flex;
    justify-content: center;
    margin: 0px;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	color: #313131;
	font-size: 16px;
	background-color: #000;
	
}

h1 {
	font-size: 4em;
	font-family: 'Kanit', sans-serif;
	font-weight: 800;
	letter-spacing: 0.4rem;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 0;
}

h2 {
	font-size: 2em;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	color:  #0023b0;
	margin-bottom: 1.6em;
}

p {
	font-size: 1.2em;
	max-width: 860px;
	margin: 3em auto 2em auto;
	color:  #ffffff;
	line-height: 1.5em;
}

.logo{
    display:block;
    width:100%;
    max-width:300px;
    margin: 0 auto;
}


ul.social {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

ul.social li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

ul.social li a {
	display: block;
	width: 48px;
	height: 48px;
	background: #2f3d75;
	margin-right: 1em;
	font-size: 1.2em;
	line-height: 48px;
	border-radius: 499em;
	color:  #F1A029;
	margin-bottom: .5em;
}

ul.social li a:hover {
	color: #2f3d75;
	background: #F1A029;
}

@media only screen and (max-width : 1020px) {
	body {
		padding-left: 2em;
		padding-right: 2em;
	}
	h1 {
		font-size: 2.6em;
	}
	h2 {
		font-size: 1.2em;
		letter-spacing: 0.2rem;
		margin-bottom: 2em;
	}
	p {
		max-width: 680px;
	}
}

@media only screen and (max-width : 768px) {

	h1 {
		font-size: 2.2em;
		letter-spacing: 0.2rem;
	}
	h2 {
		font-size: 1.1em;
		letter-spacing: 0.2rem;
	}
	p {
		margin-top: 1.5em;
		font-size: 1em;
	}	
	ul.social li a {
		width: 38px;
		height: 38px;
		font-size: 1.1em;
		line-height: 39px;
		margin-right: .5em;
	}
}

@media only screen and (max-width : 480px) {
	body {
		padding-left: 1em;
		padding-right: 1em;
	}
	h1 {
		font-size: 1.6em;
	}
	h2 {
		font-size: 0.9em;
	}
	p {
		margin-top: 1.5em;
		font-size: 0.9em;
		padding-left: .5em;
		padding-right: .5em;
	}
}

.whatsapp {
	background-color: green;
	color:white;
	text-align: center;
	font-weight: 700;
	border-radius: 0.5em;
	padding: 1em;
	width: 8em;
	margin-left: auto;
	margin-right: auto;
}




.sliderhome{
    position: absolute;
    margin-top: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 100vh;
    perspective-origin: 50% calc(50% - 3vh);
    overflow: hidden;
}
.scene {
    position: relative;
    transform-style: preserve-3d;
    animation: sceneRotate 100s infinite linear;
}
@keyframes sceneRotate {
    to {transform: rotateY(360deg);}
}

.floor {
    position: absolute;
    top:10vh;
    transform: 
        translate(-50%, -50%) 
        rotateX(90deg);
    width: 200vh;
    height: 200vh;
    background-image:
        radial-gradient(#0000, #000 50%), 
        repeating-conic-gradient(from 45deg, #111 0deg 90deg, #222 90deg 180deg);
    background-size: 100%, 5vh 5vh;
}

.saudacao{
    position: relative;
    z-index: 3;
    top:10vh;
    text-align: center;
    color: white;
}


