@import url("https://use.typekit.net/iat1ndv.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "upgrade", sans-serif;
  font-style: normal;
  font-weight: 400;
}

body {
  background-color: #000;
  color: #fff;
}

#app .app_inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#app .app_inner header {
  height: 100%;
  display: flex;
  align-items: center;
}
#app .app_inner header h1 {
  line-height: 1;
}
#app .app_inner main {
  height: 50%;
}
#app .app_inner main .main_inner {
  display: grid;
  grid-template-columns: 50fr 50fr;
  height: 100%;
}
#app .app_inner main .main_inner .item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
#app .app_inner main .main_inner .item:hover {
  background-color: #fff;
}
#app .app_inner main .main_inner .item:hover .item_inner h3 {
  color: #000;
}
#app .app_inner footer {
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  padding: 20px;
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
}
#popup .popup_inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .popup_inner .icon-times {
  background-image: url("../img/times.svg");
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#popup .popup_inner iframe {
  width: calc(100% - 150px);
  height: calc(100% - 150px);
}
