
/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
	color: #FFFFFF;
	text-decoration: none;
	
    -webkit-transition: color 0.2s ease 0s;
     -moz-transition: color 0.2s ease 0s;
      -ms-transition: color 0.2s ease 0s;
       -o-transition: color 0.2s ease 0s;
          transition: color 0.2s ease 0s;
}

::-moz-selection{
	background-color: #6fb4aa;
}
::selection {
	background-color: #6fb4aa;
}

/* Full-page background with a split-color effect */
.background {
    width: 100vw;
	min-height: 100vh; /* Allows background to expand instead of shrinking content */
    background: linear-gradient(to bottom, #6fb4aa 50%, #ffffff 50%);
    display: flex;
	flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
}

.text {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	width: 100%;
	display: block;
	clear: both;
	text-align: center;
	letter-spacing: 3px;
	text-transform: uppercase;
    position: absolute;
	z-index: 999999;
}

.text.white,
.text.white a {
	color: #FFFFFF;
}

.text.white a:hover {
	color: #f37455;
}

.text.coral,
.text.coral a {
	color: #f37455;
}

.text.coral a:hover {
	color: #6fb4aa;
}

.text.top {
	top: calc(50% - 285px);
}

.text.bottom {
	bottom: calc(50% - 285px);
}

/* Centered Circle */
.circle {
    width: 470px; /* Prevent it from getting too big */
    height: 470px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f37455 50%, #fee5da 50%);
	margin-top: -1px;
}

.circle p {
	padding: calc(50% + 30px) 20px 0 20px;
	font-size: 12px;
	line-height: 1.8em;
	text-align: center;
	color: #9a2e67;
	font-family: 'Playfair Display', serif;
	border-radius: 50%;
	position: relative;
	width: 400px;
	margin: 0 auto;
	letter-spacing: 0.5px;
}

/* Image placed on top of the circle */
.logo {
    position: absolute;
    top: calc(50% - 164px);
	width: 594px;
    max-width: 100%;
	z-index: 999999;
}

@media screen and (min-height: 550px) {
	.text.top {
		top: calc(50% - 265px);
	}
	
	.text.bottom {
		bottom: calc(50% - 265px);
	}
}
