* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	background: #22313f;
}

#starsBox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0; 
	background: rgba(0,0,0,0.75); 
	opacity: .5;
	span {
		display: inline-block; 
		width: auto;
		position: absolute;
		border-radius: 100%; 
		transition: 100s linear;
	}
}

p {
	text-align: center;
	transform: translateY(-50%);
	font-size: 2.625rem;
	font-weight: 900;
	color: white;
	text-transform: uppercase;
	font-family: 'Roboto','Helvetica','Arial',sans-serif;
	letter-spacing: 5px;
}

.description {
    display: block;
    font-size: 0.95rem;
    color: #bdc3c7;
    font-weight: 100;
	letter-spacing: 5px;
    text-align: center;
	transform: translateY(-50%);
	color: white;
	text-transform: uppercase;
	font-family: 'Roboto','Helvetica','Arial',sans-serif;
	letter-spacing: 5px;
}

a {
    font-weight: 700;
    text-decoration: none;
    color: #d64541;
    padding-bottom: 2px;
    border-bottom: 0px solid #d64541;
    transition: 0.5s;
}

a:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid #d64541;
}

.df-fdc-jcc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	position: fixed;
	top: 0;
	left: -2rem;
	right: 0;
	bottom: 0; 
}

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #0f1923;
    cursor: pointer;
    position: relative;
    padding: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    transition: all .15s ease;
  }
  
  .button::before,
  .button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
  }
  
  .button::before {
    top: 0;
    border-bottom-width: 0;
  }
  
  .button::after {
    bottom: 0;
    border-top-width: 0;
  }
  
  .button:active,
  .button:focus {
    outline: none;
  }
  
  .button:active::before,
  .button:active::after {
    right: 3px;
    left: 3px;
  }
  
  .button:active::before {
    top: 3px;
  }
  
  .button:active::after {
    bottom: 3px;
  }
  
  .button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0f1923;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
  }
  
  .button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #0f1923;
  }
  
  .button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #0f1923;
    transition: all .2s ease;
  }
  
  .button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #0c83b9;
    transform: skew(-15deg);
    transition: all .2s ease;
  }
  
  .button_text {
    position: relative;
  }
  
  .button:hover {
    color: #0f1923;
  }
  
  .button:hover .button_sl {
    width: calc(100% + 15px);
  }
  
  .button:hover .button_lg::after {
    background-color: #fff;
  }