@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotomedium';
    src: url('../fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family:'robotoregular', Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    background: url(../images/splash.jpg) center no-repeat #000;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

h1 {
    text-shadow: 0 2px 2px #000;
    font-style: italic;
    color:lightgray;
}

video {
    width: 100%;
    height: 460px;
}

footer {
    background: #8c2037;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: .5rem 0;
    font-size: .8rem;
    font-weight: 600;
    align-self: flex-end;
    margin: 1rem 0 0 0;
}

.lp-cont {
    flex-basis: 50rem;
    background-color: rgba(0, 0, 0, .25);
    backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
    flex-direction: column;
    justify-content: center;
}

.logo {
    width: 9rem;
}

.char {
    width: 4.5rem;
}

img.char:nth-child(2) {
    display: none;
}

.icon {
    border-radius: .5rem;
    border:2px solid rgba(255,255,255,.75);
    width: 9rem;
    box-shadow: 0 3px 9px #000;
    padding: 0!important;
}

.down {
    color: lightgreen;
    margin: 0;
    text-shadow:0 2px 6px #000;
}

.lpf {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

.lpf img, .lpf span {
    justify-content: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.warning {
    color:#000;
    background: rgb(0, 0, 0, .25);
    text-align: center;
    line-height: 1rem;
    font-size: .8rem;
    padding:.5rem .5rem 1rem .5rem;
    width: 41%;
    margin: .5rem;
    border-radius: .25rem;
    border:1px solid rgba(170, 51, 51, 0.75);
    display: flex;
	flex-direction: column;
	flex: 1 1 300px;
    height: 41vh;
}

.warning p {
    margin: .5rem 0 1rem;
    color: #fff;
}

.tut {
    background: darkred;
    color: yellow;
    font-size: .8rem;
    text-decoration: none;
    border-radius: .25rem;
    padding: .5rem;
    margin: 1.5rem auto 1rem auto;
    display: block;
    width: 95%;
    box-shadow:0 2px 6px #000;
}

.wv {
    background: blue;
    color: #fff;
    font-size: .8rem;
    text-decoration: none;
    border-radius: .25rem;
    padding: .5rem;
    display: block;
    box-shadow:0 2px 6px #000;
}

/*Modal*/

.modal-contenido {
    background-color: #fff;
    width: 55%;
    padding: 1rem;
    margin: 5% auto;
    position: relative;
    text-align: center;
    border-radius: .5rem;
    box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .75);
  }
  .modal{
    background-color: rgba(0,0,0,.8);
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    opacity:0;
    pointer-events:none;
    transition: all 1s;
  }
  #rc:target, #ri:target, #erfolg:target {
    opacity:1;
    pointer-events:auto;
  }

  .success {
      border:2px solid goldenrod;
  }

  .win {
      width: 90%;
      margin: 0 auto;
  }

  .success input {
      display: block;
      width:75%;
      border: 1px solid goldenrod;
      margin: 0 auto;
      padding: .25rem .5rem;
  }

  .success a.sac, .sac, #rc .sac, #ri .sac {
    width: 25%;
    background: darkred;
    border-radius: .25rem;
    text-align: center;
    color: #fff;
    margin:.5rem auto 0 auto;
    flex-grow: 1;
    padding: .5rem 1rem;
    text-shadow: -2px 2px 0 rgb(0 0 0 / 75%);
    font-size: .9rem;
    text-transform: uppercase;
    font-style: oblique;
    font-weight: 600;
    text-decoration: none;
    display: block;
  }

  .mission-item {
      width: 40%;
  }

  /*Modal*/

@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {

    video {
        width: 280px;
        height: 180px;
    }

    footer {
        font-size: .5rem;
    }

    h1 {
        font-size: 1.2rem;
    }

    .lp-cont {
    flex-basis: 90%;
    }

    .lpf div {
        font-size: .8rem;
        line-height: 1rem;
        padding: 1rem 0 0 0;
    }

    .char {
        width:4rem;
    }

    img.char:nth-child(2) {
        display: block;
    }

    img.char:nth-child(4) {
        display: none;
    }

    .warning {
        width: 80%;
        padding: 1rem!important;
        height: auto;
        margin:.5rem;
    }

    .warning p {
        padding: 0 1rem;
    }

    .tut {
        width: 75%;
    }

    .modal-contenido {
        width: 88%;
        padding: .5rem;
    }

}
