body {
  margin: 0;
  font-family: "Chakra Petch", "Microsoft JhengHei", serif;
  background-color: #323232; }

* {
  box-sizing: border-box; }

a {
  text-decoration: none;
  color: #fff; }

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden; }
  .background .items {
    position: absolute;
    left: 0;
    top: 0; }
    .background .items.item1, .background .items.item2 {
      width: 100%; }
      .background .items.item1 img, .background .items.item2 img {
        width: 100%;
        max-height: 300px; }
    .background .items.item2 {
      bottom: 0;
      top: initial;
      transform: rotate(180deg); }
    .background .items.item3 {
      height: 100%; }
      .background .items.item3 img {
        height: 100%; }
    .background .items.item4 {
      left: initial;
      right: 0;
      height: 100%; }
      .background .items.item4 img {
        height: 100%; }

section.main {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  section.main .logo {
    margin: 0 auto;
    text-align: center;
    width: 100%; }
    section.main .logo img {
      width: 800px;
      max-width: calc(100% - 20px); }
  section.main .readme {
    text-align: center;
    color: #fe5576;
    font-size: 25px;
    text-transform: uppercase;
    transition: color 0.3s, background 0.3s; }
    section.main .readme del {
      position: relative;
      text-decoration: none;
      word-break: keep-all;
      white-space: nowrap; }
      section.main .readme del::before {
        width: 100%;
        height: calc(100% + 10px);
        position: absolute;
        left: 0;
        top: -5px;
        pointer-events: none;
        content: "";
        background-image: url(../img/del.png);
        background-size: 100% 100%; }
      section.main .readme del::after {
        width: 100%;
        height: calc(100% + 10px);
        position: absolute;
        left: 0;
        top: -5px;
        content: "BACKDOOR";
        font-family: "Comforter", serif;
        color: #feac55;
        pointer-events: none;
        font-size: 32px;
        text-shadow: 0 0 10px #feac55; }
  section.main .actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    width: 340px;
    max-width: calc(100% - 40px);
    text-transform: uppercase; }
    section.main .actions > div {
      color: #fe5576;
      cursor: pointer;
      position: relative; }
      section.main .actions > div::before {
        position: absolute;
        bottom: 0;
        left: -10px;
        content: "";
        display: block;
        width: calc(100% + 20px);
        height: 0%;
        background: #ff5576;
        transition: height 0.1s, box-shadow 0.1s;
        z-index: 0; }
      section.main .actions > div:hover span {
        color: #333333; }
      section.main .actions > div:hover::before {
        height: 100%;
        box-shadow: 0px 0px 20px #ff5576; }
      section.main .actions > div span {
        display: block;
        text-align: center;
        padding: 2.5px 10px;
        position: relative;
        z-index: 2;
        transition: color 0.1s; }
        section.main .actions > div span:nth-child(1) {
          border-bottom: 2px solid; }
    section.main .actions .download::after {
      font-family: "Comforter", serif;
      content: "Dont";
      text-transform: uppercase;
      position: absolute;
      top: -5px;
      left: -100px;
      font-size: 36px;
      color: #feac55;
      text-shadow: 0 0 20px #fe5576;
      pointer-events: none; }

footer {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: right;
  padding: 20px 20px;
  opacity: 0.5; }
