* {
    font-family: 'share tech mono';
}

body{
	overflow: hidden;
}

main {
	width: 90%;
	max-width: 50rem;
	height: 100%;
	margin: 0 auto;
}

section:nth-of-type(2){
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-evenly;
	align-items: flex-start;
	gap: 1.5rem;
	animation-duration: 3s;
} 

h1 {
	color: var(--primary);
	font-size: 2rem;
}

article{
    background: var(--secondary);
    border: 2px solid var(--primary);
    border-radius: .5rem .5rem 0 0;
    width: 100%;
    height: 40vh;
	padding: 1.5rem;
	color: var(--primary);
}

article p {
	font-size: 1rem;
	margin-top: .8rem;
}

.wrapper-button {
	margin: 0 auto;
}

.button {
  font-size: 1.5rem;
}


/* MEDIA QUERIES */

@media (min-width: 900px) {
	section:nth-of-type(2) {
		justify-content: center;
		padding-top: 5rem;		
	}

	article {
		height: 55vh;
	}

	article p {
		font-size: 1.5rem;
	}
}

@media (min-width: 600px) {
	section:nth-of-type(2) {
		justify-content: center;
		padding-top: 1rem;		
	}

	article {
		height: 55vh;
	}

	article p {
		font-size: 1.2rem;
	}
}


/* ANIMATION */

section:nth-of-type(1) {
	width: 100%;
	max-width: 100%;
	height: 100vh;
	background-image: url(/img/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
	animation: start 12s forwards;
	transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes start {
	0%{
		opacity: 0;
		transform: rotate(-15deg);
		filter: blur(1rem);
	}
	85%{
		opacity: 1;
		transform: rotate(0);
		filter: blur(0);
	}
	100%{
		opacity: 0;
		transform: rotate(30deg);
		filter: blur(1rem);
	}
}

.inactive{
	display: none;
}