/* fonts */

@import url('https://fonts.googleapis.com/css?family=Kaushan+Script');
@import url('https://fonts.googleapis.com/css?family=Old+Standard+TT');

/* default */

html,
body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Kaushan Script', 'Old Standard TT', cursive;
  overflow: hidden;
}

h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 90px;
  font-weight: 700;
  line-height: 1.4em;
}
h1 small {
  display: block;
  font-size: 72px;
  line-height: 1em;
}

.header {
  display: none;
  position: absolute;
  z-index: 1;
  left: 135px;
  top: 275px;
  width: auto;
  height: auto;
}
.header a {
  text-decoration: none;
  color: inherit;
}

.background {
  display: none;
  z-index: 0;
  position: absolute;
  left: auto;
  top: auto;
  width: 3560px;
  height: 2920px;
  background-image: url(../images/dots.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.shadow {
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 500px #000000;
}

/* projects */

.projects {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.projects ul {
  position: absolute;
  left: 135px;
  top: 20%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.projects ul li {
  padding: 3px 0;
}
.projects ul li a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.5;
}
.projects ul li a:hover {
  opacity: 1;
}