@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&display=swap');

* {
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	box-sizing: border-box;
}

body {
	background-color: #F5F5F5;
}

h1 {
	font-weight: 800;
	color: #333;
	font-size: 58px;
	margin-bottom: 0;
}

p {
	font-weight: 300;
	margin-bottom: 60px;
	color: #333;
}

h3 {
	margin: 20px;
}

.container {
	min-height: 90vh;
	height: auto;
	width: 90vw;
	margin: 5vh auto;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.elements-container {
	display: flex;
	align-items: center;
	justify-content: center;	
}

.elements-container > div {
	width: 33.33%;	
}

.element-container {
	min-height: 80px;
	width: 80%;
	border-radius: 10px;
	box-shadow: inset 4px 4px 6px rgba(0,0,0,0.1), 
                inset -4px -4px 6px rgba(255,255,255,0.8);
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 20px auto;
	padding: 20px;
	background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(0,0,0,0.01));	
}

.element-container h4 {
	font-size: 30px;
	background: -webkit-linear-gradient(45deg, #1758F1, #37DBE0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	animation: fadeIn 1s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

button {
	margin-bottom: 40px;
	height: 60px;
	width: 200px;
	border-radius: 10px;
	border: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    background: -webkit-linear-gradient(45deg, #1758F1, #37DBE0);
    cursor: pointer;
    padding: 20px;
    transition: .5s;
}

button:hover {
	transform: scale(1.05);
	box-shadow: 8px 8px 12px rgba(0,0,0,0.1), 
                -8px -8px 12px rgba(255,255,255,1);
    transition: .5s;
}

button:focus {
	outline: none;
}

@media (max-width:768px) {
	.elements-container {
		flex-direction: column;
	}
	h1 {
		font-size: 40px;
	}
	p {
		margin-bottom: 40px;
	}
	.element-container h4 {
		font-size: 22px;
	}
	.elements-container > div {
		width: 100%;	
	}
	button {
		position: fixed;
	    bottom: 0;
	    width: 100%;
	    margin: 0;
	    border-radius: 0;
	}
	.element-3 {
		margin-bottom: 100px;
	}
}