body {
	position: relative;
	background-color: #ffffff;
	overflow-x: hidden;
}

/* Gradients */

.gradient-top {
	position: absolute;
	top: -50vh;
	left: 0;
	width: 100%;
	height: 150vh;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #dedad6, #ffffff);
	background-image: linear-gradient(to bottom, #dedad6, #ffffff);
	z-index: -1;
	pointer-events: none;
}

.gradient-bottom {
	background-color: #ffffff;
	position: absolute; /* instead of absolute */
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200vh;
	z-index: -1;
	pointer-events: none;
	background-image: -webkit-linear-gradient(top, #ffffff, #dedad6);
	background-image: linear-gradient(to bottom, #ffffff, #dedad6);
}

/* Colors */

.clr-black {
    color: #212529;
}

.clr-gray {
    color: #808080;
}

.clr-white {
    color: #dedad6;
}

/* Menu */

.my-menu {
	padding: 30px 0;
	background: #ffffff;
	border: 0;
	border-radius: 0;
	box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-moz-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-ms-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-o-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.my-menu-item {
	padding: 10px;
	font-family: 'Tilt Warp', sans-serif;
	font-weight:400;
	font-size: 24px;
	line-height: 20px;
	text-transform: uppercase;
}

.my-menu-item a {
	color: #212529;
	text-decoration: none;
	border: 0;
}

.my-menu-item a:hover {
	color: #808080;
	text-decoration: none;
	border: 0;
}

/* Fonts */

h1, h2, h3  {
    color: #212529;
    font-family: "Tilt Warp", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "XROT" 0,
        "YROT" 0;
}

h2 {
	margin: 18rem 0 2.5rem 0;
}

h3 {
	margin: 2.5rem 0 0 0;
	font-size: 1.875rem;
	line-height: 1.75rem;
}

p, ul, ol, li, label {
    color: #212529;
    font-size: 1.375rem;
	margin: 1.25rem 0 0 0;
}

/* Links */

a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid #212529;
}

a:hover {
    color: #808080;
    text-decoration: none;
    border-bottom: 1px solid #808080;
}

.social-link {
    color: #212529;
    text-decoration: none;
	border-bottom: none !important;
}

.social-link:hover {
    color: #808080;
    text-decoration: none;
	border-bottom: none !important;
}

/* Forms */

form {
	margin: 40px 0 0 0;
	font-size: 22px;
}

input {
	margin: 3px 0 12px 0;
	padding: 0 10px;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #212529;
	border-radius: 10px;
}

.input-name {
    height: 60px;
}

.input-email {
    height: 66px;
}

textarea {
	margin: 3px 0 30px 0;
	padding: 10px;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #212529;
	border-radius: 10px;
}

.my-button {
	height: 90px;
	background-color: #212529;
	color: #ffffff;
	font-family: 'Tilt Warp', sans-serif;
	font-weight:400;
	font-size: 30px;
	line-height: 30px;
}

.my-button:hover {
	height: 90px;
	background-color: #ffffff;
	color: #212529;
	box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-moz-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-ms-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-o-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/* Footer */

footer {
	padding: 9rem 0 4.5rem 0;
}