@import url(https://fonts.googleapis.com/css?family=Raleway);

*,*:before,*:after { box-sizing: border-box; }
body { 
  background: linear-gradient(to bottom, #87CEEB 0%, #98D8E8 50%, #B8E6F2 100%);
  overflow: hidden;
  height: 100vh;
  margin: 0;
  padding: 0;
}

h2 {
  color: #fff;
  font-family: "raleway", sans-serif;
  opacity: 1;  
  text-align: center;
  transition: opacity .8s;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-top: 50px;
}
h2.hide {
  opacity: 0;
}

/* Sun */
.sun {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  border-radius: 50%;
  top: 15%;
  left: 0;
  box-shadow: 0 0 50px #FFD700, 0 0 100px #FFA500;
  margin-left: -60px;
}

.sun-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.sun-rays:before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  width: 4px;
  height: 30px;
  background: #FFD700;
  border-radius: 2px;
  margin-left: -2px;
  box-shadow: 
    0 0 0 0 #FFD700,
    42px 18px 0 0 #FFD700,
    78px 78px 0 0 #FFD700,
    42px 138px 0 0 #FFD700,
    0 156px 0 0 #FFD700,
    -42px 138px 0 0 #FFD700,
    -78px 78px 0 0 #FFD700,
    -42px 18px 0 0 #FFD700;
  transform-origin: 2px 90px;
}

.sun-rays:after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #FFD700;
  border-radius: 1px;
  margin-left: -1px;
  box-shadow: 
    30px 10px 0 0 #FFD700,
    55px 55px 0 0 #FFD700,
    30px 100px 0 0 #FFD700,
    0 110px 0 0 #FFD700,
    -30px 100px 0 0 #FFD700,
    -55px 55px 0 0 #FFD700,
    -30px 10px 0 0 #FFD700;
  transform-origin: 1px 80px;
}

.click-here {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

a {
  color: #333;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
  background: rgba(255,255,255,0.8);
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
a:visited {
  color: #333;
}
a:hover,
a:focus {
  color: white;
  background: rgba(0,0,0,0.7);
  transform: scale(1.05);
}
