.btn {
			box-sizing: border-box;
			-webkit-appearance: none;
			-moz-appearance: none;
			appearance: none;
			background-color: transparent;
			border: 2px solid #e74c3c;
			border-radius: 0.6em;
			color: #e74c3c;
			cursor: pointer;
			display: -webkit-box;
			display: -webkit-flex;
			display: -ms-flexbox;
			display: flex;
			-webkit-align-self: center;
			-ms-flex-item-align: center;
			align-self: center;
			font-size: 1rem;
			font-weight: 400;
			line-height: 1;
			margin: 20px;
			padding: 1.2em 2.8em;
			text-decoration: none;
			text-align: center;
			text-transform: uppercase;
			font-family: 'Montserrat', sans-serif;
			font-weight: 700;
			border-color: #3498db;
			display: block;
			color: white;
			box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
			-webkit-transition: all 150ms ease-in-out;
			transition: all 150ms ease-in-out;
		}

		.btn:hover {
			color: blue;
			outline: 0;
			box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
		}

    .largePillInput {
    width: 20%;
    color: rgb(38, 50, 56);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(136, 126, 126, 0.04);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
    text-align: center;
    margin-bottom: 27px;
    font-family: 'Ubuntu', sans-serif;
}

    .largePillInput:focus {
        border: 2px solid rgb(30, 0, 229) !important;
    }

		/* The Modal (background) */
		.modal {
			display: block;
			/* Hidden by default */
			position: fixed;
			/* Stay in place */
			z-index: 1;
			/* Sit on top */
			padding-top: 100px;
			/* Location of the box */
			left: 0;
			top: 0;
			width: 100%;
			/* Full width */
			height: 100%;
			/* Full height */
			overflow: auto;
			/* Enable scroll if needed */
			background-color: rgb(0, 0, 0);
			/* Fallback color */
			background-color: rgba(0, 0, 0, 0.4);
			/* Black w/ opacity */
		}

		/* Modal Content */
		.modal-content {
			background-color: #fefefe;
			margin: auto;
			padding: 20px;
			border: 1px solid #888;
			width: 80%;
		}

		/* The Close Button */
		.close {
			color: #aaaaaa;
			float: right;
			font-size: 28px;
			font-weight: bold;
		}

		.close:hover,
		.close:focus {
			color: #000;
			text-decoration: none;
			cursor: pointer;
		}