/*
Theme Name: HUGE
Description: Creative Coming Soon Template
Author: SquirrelLabs
Author URI: https://themeforest.net/user/squirrellabs/portfolio?ref=SquirrelLab
Version: 1.0
License: https://themeforest.net/licenses/standard

---

/*******************************
  Table of Contents

  1.0 General Styles
  2.0 Content Styles
  3.0 Countdown
*******************************/

/**********************************/
/******* 1.0 General Styles *******/
/**********************************/
* {
	margin: 0;
	padding: 0;
}

html, 
body {
	height: 100%;
	min-height: 100%;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	font-family: 'Raleway', Arial;
	font-weight: 400;
}

body {
	background: #eee;
}

canvas {
	background: white;
	display: block;
}

#c {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

/**********************************/
/******* 2.0 Content Styles *******/
/**********************************/
.content {
  text-align: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 55%;
  z-index: 11;
}
h2{
  color: #ddd;
  font-weight: 500;
  margin-bottom: 4vw;
}
a {
  padding: 4px 25px 4px 4px;
  background: #e1e3e5;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #FF5F6D;
  background: -webkit-linear-gradient(-45deg, #FFC371, #FF5F6D);
  background: linear-gradient(-45deg, #FFC371, #FF5F6D);
}
a:hover {
  opacity: 0.8;
}
svg {
  height: 16px;
  width: 16px;
  padding: 12px;
  margin-right: 10px;
  background: rgba(255, 255, 255, .4);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  float: left;
}


/**********************************/
/*******    3.0 Countdown   *******/
/**********************************/
#countdown {
    /*position: absolute;
    display: none;*/
    margin: 10vh auto 70px;
    top: 35%;
    left: 0;
    right: 0;
    width: 40%;
    height: 50px;
}

#countdown.show {
  display: block;
}

#countdown > div {
    position: relative;
    float: left;
    width: 25%;
    font-size: 3vw;
    font-weight: 400;
    line-height: .8em;
    letter-spacing: 2px;
    text-align: center;
    color: #ddd;
}

#countdown > div > span {
    display: block;
    font-size: 1vw;
    font-weight: 100;
    line-height: 1.2em;
    letter-spacing: 0;
    margin-top: 20px;
    color: #ddd;
    text-transform: lowercase
}

@media (max-width:480px) {
    #countdown {
        width: 100%;
    }
    #countdown > div {
        width: 25%;
        font-size: 30px;
        font-weight: 700;
        line-height: .8em;
        letter-spacing: 2px;
    }
    #countdown > div > span {
      font-size: 11px;
    }
}