body {
  font-family: 'Dosis', sans-serif;
  color: #222;
  font-size: 1rem;
  line-height: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor:default;
}

::selection { background:red; color:#fff }
::-moz-selection { background:red; color:#fff }

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }


/* fonts */
/* dosis-regular - latin */
@font-face {
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 400;
  src: url('../font/dosis-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../font/dosis-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/dosis-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/dosis-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../font/dosis-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../font/dosis-v27-latin-regular.svg#Dosis') format('svg'); /* Legacy iOS */
}/* anton-regular - latin */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: url('../font/anton-v23-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../font/anton-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/anton-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/anton-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../font/anton-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../font/anton-v23-latin-regular.svg#Anton') format('svg'); /* Legacy iOS */
}

/* cookie */
#cookie-popup { font-family: 'Anton'; position:fixed; color:#fff; text-align:center; left:0px; padding:15px 0 0 0; font-size:10px; bottom:0px; width:100%; background:red; z-index:999 }
#cookie-popup a {font-family: 'Anton'; color:#fff; text-align:center; text-decoration:underline}
#cookie-popup button {font-family: 'Anton'; position:relative; color:#fff; text-align:center; margin:5px 20px; padding:10px 10px; border:2px solid #fff; background:red; font-size:10px; cursor:pointer}
#cookie-popup.hidden { display: none; }

h1 {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  line-height: 7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.body {
  overflow: hidden;
  height: 100%;
  /* background-color: #eee; */
background: rgb(238,238,238);
background: -moz-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(238,238,238,1) 85%, rgba(215,215,215,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(238,238,238,1) 85%, rgba(215,215,215,1) 100%);
background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(238,238,238,1) 85%, rgba(215,215,215,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#d7d7d7",GradientType=1);
}

.app {
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text {
  margin-top: 0.2rem;
  line-height: 1rem;
}

.link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 2.5rem 23px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
  text-decoration: none;
}

.link:hover {
  color: red;
}

.h1 {
  padding-top: 0.9rem;
  line-height: 6rem;
}

.grid {
  position: relative;
  z-index: 3;
}

.grid-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-items.g2 {
  padding-left: 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.divider {
  width: 120px;
  height: 2px;
  background-color: #222;
}

.divider.d1 {
  width: 80px;
}

.divider.d2 {
  width: 160px;
}

.divider.d3 {
  width: 320px;
}

.frame {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  padding: 2rem 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.frame__info {
  text-align: center;
  color: #888;
  line-height: 1.5rem;
}

.frame__info a {
 font-size: 0.75rem;
}

.frame__info a:hover {
  color:red;
}

.frame__demo {
  display: inline-block;
  margin-right: 7px;
  margin-left: 7px;
  text-decoration: none;
}

.frame__demo--current{
  text-decoration: underline;
}

.frame__demo:hover{
  text-decoration: underline;
}

.frame__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.frame__credits {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #888;
  line-height: 1.5rem;
}

.frame__credits a:hover {
  color: red;
}

.frame__title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.frame__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
  color: #888;
  line-height: 1.5rem;
}

.frame__links a {
  background:red;
}

.frame__role {
  margin-bottom: 2px;
  font-style: italic;
  text-transform: uppercase;
}

.frame__role {
 font-size: 0.75rem;
}

.frame__name {
  font-weight: 700;
}

.credit-wrap {
  margin-top: 12px;
  margin-bottom: 12px;
}

.italic {
  text-transform: none;
}

.frame__title {
  text-align: center;
}

.frame__init {
  margin-bottom: 5px;
  text-align: center;
}

.frame__init img {
  height:20px;
  margin:0 7px;
  opacity:0.5;
}

.frame__init img:hover {
  opacity:1;
}

.italic {
  text-transform: none;
  color: #222;
  font-style: italic;
}

.frame__link {
  color: #888;
  text-decoration: none;
}

.frame__link 1 {
  color: #888;
  text-decoration: none;
}

.frame__link.fl_1:hover{
  text-decoration: underline;
}

.frame__link.fl_1 {
  margin-left: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.frame__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 1000px) {
.mobile {
  display:none
}
}

@media screen and ( max-width: 1500px ) {

h1 {   font-size: 3rem; }
body {   font-size: 0.8rem;   line-height: 0.6rem;   letter-spacing: 0.1em; }
.h1 {   padding-top: 0.5rem;   line-height: 4rem; }

}

@media screen and ( max-width: 1200px ) {

h1 {   font-size: 2rem; }
body {   font-size: 0.75rem;   line-height: 0.4rem;   letter-spacing: 0.1em; }
.h1 {   padding-top: 0.4rem;   line-height: 2rem; }

}

@media screen and (max-width: 1000px) {

  .body {
    overflow: scroll;
	overflow-x: hidden;
    font-size: 2rem;
	line-height:3rem;
	text-align:center;
  }

  .grid {
    position: relative;
  }

  .frame {
    position: relative;
	display:none;
  }

  .mobile {
	margin-top:150px;
	position: relative;
	text-align:center;
   }

  .mobile a {
	color:#222;
   }

  .mobile img {
	width:50px;
	margin:50px 0;
   }

  .app {
    position: relative;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    height: 100%;
  }

  .link {
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
  }

  .grid-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .divider {
    display: none;
  }

  .text {
	padding-top:25px;
    font-size: 2rem;
	line-height:3rem;
  }

  .link {
    margin: 8vw 0px;
  }

  .h1 {
    padding-top: 4vw;
    font-size: 14vw;
    line-height: 11vw;
  }

  .frame__demo {
    font-size: 0.55rem;
    line-height: 0.55rem;
  }

  .frame__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .frame__credits {
    margin-bottom: 1vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .frame__title-wrap {
    margin-bottom: 2vw;
  }

  .frame__role {
    font-size: 2vw;
    line-height: 2vw;
  }

  .frame__title {
    font-size: 2vw;
    line-height: 2vw;
  }

  .frame__init {
    margin-bottom: 0.3vw;
  }

  .frame__link {
    font-size: 2vw;
    line-height: 2vw;
  }

  .frame__link.fl_1 {
    margin-left: 0px;
  }

  .frame__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

}
